PHP에서 두 문자열이 동일한지 비교하는 중 == 또는 strcmp() 중 어느 것이 더 효율적인가요?
PHP에서 두 문자열이 동일한지 비교하는 중 == 또는 strcmp() 중 어느 것이 더 효율적인가요?
<code><?php $time1 = microtime(true); $a = $b = 'hello,world!'; $i = $j = 100000000; while($i>0){ $i--; if($a==$b) ; } $time2 = microtime(true); while($j>0){ $j--; if(strcmp($a,$b)); } $time3 = microtime(true); echo ($time2 - $time1)."\n"; echo ($time3 - $time2); //result //$ php demo.php //1.9449820518494 //7.9897949695587 </code>
연산자가 함수 호출보다 메모리를 절약하기 때문에 확실히 == 더 효율적입니다.