CloneSet578


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
9220.993class_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
19127
libraries/joomla/methods.php
29146
libraries/joomla/methods.php
Clone Instance
1
Line Count
9
Source Line
127
Source File
libraries/joomla/methods.php

        /**
         * Passes a string thru an sprintf
         *
         * @access      public
         * @param       format The format string
         * @param       mixed Mixed number of arguments for the sprintf function
         * @since       1.5
         */
        function sprintf($string) {

                $lang=  &JFactory::getLanguage();
                $args=  func_get_args();
                if (count($args)>  0) {
                        $args[0]=  $lang->_($args[0]);
                        return call_user_func_array('sprintf', $args);
                      }
                return '';
              }


Clone Instance
2
Line Count
9
Source Line
146
Source File
libraries/joomla/methods.php

        /**
         * Passes a string thru an printf
         *
         * @access      public
         * @param       format The format string
         * @param       mixed Mixed number of arguments for the sprintf function
         * @since       1.5
         */
        function printf($string) {

                $lang=  &JFactory::getLanguage();
                $args=  func_get_args();
                if (count($args)>  0) {
                        $args[0]=  $lang->_($args[0]);
                        return call_user_func_array('printf', $args);
                      }
                return '';
              }


Clone AbstractionParameter Count: 2Parameter Bindings

/**
         * Passes a string thru an printf
         *
         * @access      public
         * @param       format The format string
         * @param       mixed Mixed number of arguments for the sprintf function
         * @since       1.5
         */
/**
         * Passes a string thru an sprintf
         *
         * @access      public
         * @param       format The format string
         * @param       mixed Mixed number of arguments for the sprintf function
         * @since       1.5
         */
function [[#variable2391a860]]($string) {
  $lang= &JFactory::getLanguage();
  $args=func_get_args();
  if (count($args)>0) {
    $args[0]=$lang->_($args[0]);
    return call_user_func_array( [[#variable2391ab00]],$args);
  }
  return '';
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#2391a860]]
printf 
12[[#2391a860]]
sprintf 
21[[#2391ab00]]
'printf' 
22[[#2391ab00]]
'sprintf'