Home >php教程 >php手册 >小结:PHP动态网页程序两个有用的小技巧

小结:PHP动态网页程序两个有用的小技巧

WBOY
WBOYOriginal
2016-06-21 09:00:511568browse

主要是在开发或学习中的一些经验技巧进行总结,主要就是把解决某种事情更好的方法告诉大家.

1,假如你使用echo输出一个简单的语句,类似与:

echo "Hello World!";
?>

那么你可以偷懒一下,写成这样:

="Hello World!";?>

2,str_replace()可以使用数组进行替换,比如:


$string  = "Welcome To The PHPCHINA.COM ,Have A Good Time.";
$search = array("Welcome To The PHPCHINA.COM", "Have A Good Time", ".");
$replace   = array("PHP is very Good", "I Like It", "!");
$newstring = str_replace($search, $replace, $string);
echo $string."
";
echo $newstring;
?>

大家可不要把经验都藏起来哦,^_^!



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn