[1470] 無題
さらなる高速化を実現
[1472] Re: 無題
<?php $com="あ\rい\r\nう\nえ \t お";
$chk_com = preg_replace("/\s/u", "", $com );//string(15)
"あいうえお" var_dump($chk_com);//string(15)
"あいうえお"
$com2=" 			\r\n \n \r \t   ";
preg_match("/\A\s*\z/u",$com2 ,$matchs); var_dump($matchs); // array(1) { // 	[0]=> // 	string(24) " 			 // 		   " // }
preg_match("/$value/ui",$chk_com);
だ
$chk_com = preg_replace("/\s/u", "", $com );//string(15)
"あいうえお" var_dump($chk_com);//string(15)
"あいうえお"
$com2=" 			\r\n \n \r \t   ";
preg_match("/\A\s*\z/u",$com2 ,$matchs); var_dump($matchs); // array(1) { // 	[0]=> // 	string(24) " 			 // 		   " // }
preg_match("/$value/ui",$chk_com);
だ