Ejemplo n.º 1
0
 /**
  * @iterations 100
  */
 public function clock_strtolower_and_strcmp()
 {
     $a = strtolower(F::medium('a'));
     $b = strtolower(F::medium('b'));
     strcmp($a, $b);
 }
Ejemplo n.º 2
0
 /**
  * @iterations 1000
  */
 public function strcasecmp_medium_string_match()
 {
     F::with(strcasecmp(F::medium('a'), F::medium('a')));
 }