亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

常用小知識(shí)總結(jié)

Original 2019-05-29 17:28:29 182
abstrakt:<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0">&

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta http-equiv="X-UA-Compatible" content="ie=edge">

<title>Document</title>

</head>

<body>

<?php

$str = "China is the most beautiful country.";

echo substr($str,-8,3)."<br>";

echo strstr($str,"mo",true)."<br>";

echo strpos($str,"mo")."<br>";


$str = "China is the most beautiful country.";

echo str_replace('China','American',$str)."<br>";

echo str_replace(['China','is','most'],['American','are','best'],$str)."<br>";

echo substr_replace($str,'***',6)."<br>";

echo "<hr>";


$str1="http://www.baidu.com";

echo urlencode($str1)."<br>";

echo urldecode($str1)."<br>";


$array = ["語(yǔ)文","數(shù)學(xué)","英語(yǔ)"];

echo json_encode($array)."<br>";

?>

</body>

</html>

本章講解的都是常用的小知識(shí)點(diǎn),應(yīng)該多看幾遍,熟記熟用@!

QQ圖片20190529173132.png

Korrigierender Lehrer:天蓬老師Korrekturzeit:2019-05-30 15:55:22
Zusammenfassung des Lehrers:在編程中, 有近三分之一的工作, 在與各種字符串打交道, 所以, 字符串操作非常的重要

Versionshinweise

Beliebte Eintr?ge