php
Pages
(Move to ...)
主页
▼
Saturday, November 23, 2013
Using echo
Echo allowed gives more than one string as parameter. Using some parameters are going to more faster than blending some variables into a parameter.
$a = ‘Hello’;
$b = ‘Word’;
echo ‘Say ‘ .$a. ‘ to ‘ .$b’;
//more faster
echo ‘Say ‘ , $a, ‘ to ‘, $b’;
‹
›
Home
View web version