php 몇개의 함수 ^^
Posted by Albert 4118Day 17Hour 32Min 13Sec ago [2014-01-09]
/* strcmp 문자열 str1과 str2 비교하여 같으면 0 이고 다를시에는 상황에 따라 양수값혹은 음수값을 표기한다. */
strcmp($str1, $str2);
/* preg_match_all 함수는 특수문자같은 기호들중에서 원하는 항목이 있을시 뽑아내는 함수 */
http://kr1.php.net/manual/en/function.preg-match-all.php
int preg_match_all ( string $pattern
, string $subject
[, array &$matches
[, int $flags
=
PREG_PATTERN_ORDER
[, int $offset
=
0 ]]] )
/* strtoupper() strtolower() ucfirst() */
$ctt = "Hello My Name is Albert";
strtoupper($ctt) ==> HELLO MY NAME IS ALBERT
strtolower($ctt) ==> hello my name is albert
ucfirst($ctt) ==> Hello My Name is Albert