Blogger Information
Blog 27
fans 2
comment 0
visits 19644
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP基础巩固---PHP九期线上班
一丁
Original
750 people have browsed it

1.demo1

实例

<?php
$a='一丁';
function b($c){
	return $c;
}
echo b($a);

运行实例 »

点击 "运行实例" 按钮查看在线实例


2.demo2

实例

<?php
$name = 'yiding';
$age = 18;
$it = true;
echo '年龄' . $age . '<br>';
echo '是否已婚: ' . $it . '<br>';
echo '姓名: ' . $name . '<br>';
echo '我的姓是: ' . $name{0} . '<br>';
print('年龄' . $age . '<br>');
echo print('年龄' . $age . '<br>');
echo '<br>';
print_r($name);
echo '<br>';
echo print_r($name, true);
$data = range(1,20,2);
echo '<pre>'. print_r($data, true) . '</pre>';
var_export($name);
echo '<br>';
var_dump($name, $age, $it);

运行实例 »

点击 "运行实例" 按钮查看在线实例


运行结果图:

image.png



3.demo3

实例

<?php
$user[] = 11;
$user[] = 'admin';
$user[] = 'a@qq.com';
$user = [11, 'admin', 'a@qq.com'];
echo $user[2] . '<br>'; 
print_r($user);
echo '<pre>' . print_r($user, true) . '</pre>';
var_dump($user);
echo '<hr>';
$res = '';
for ($i = 0; $i < count($user); $i++) {
    $res .= $user[$i] . ', ';
}
echo rtrim($res, ', ');
echo '<hr>';
$res = '';
foreach ($user as $item) {
    $res .= $item . ', ';
}
echo rtrim($res, ', ');
echo '<hr>';
list($id, $name, $email) = $user;
echo $id . '--' . $name . '--' . $email . '<br>';
$str = implode(',', $user);
echo $str, '<br>';
$sql = "INSERT `users` SET `comment` = {$str};";
$arr = explode(',', $str);
print_r($arr);
echo '<br>';
while (list($key, $value) = each($user)) {
    echo '[' . $key . '] => ' . $value . '<br>';
}
$user = ['id'=>11, 'name'=>'admin', 'email'=>'a@qq.com'];
echo $user['email'] . '<br>';
print_r($user);
var_dump($user);
var_export($user);
echo '<hr>';
foreach ($user as $key=>$value) {
    echo '[' . $key . '] => ' . $value . '<br>';
}
$res = '';
for ($i = 0; $i < count($user); $i++) {
    $res .= current($user) . ', ';
    next($user);
}
echo rtrim($res, ', ');
echo '<hr>';
extract($user);
echo 'id = ' . $id . ', name = ' . $name . ', email = ' . $email . '<br>';
$dsn = 'mysql:host=localhost;dbname=test';
$username = 'root';
$password = 'root';
$linkParams = compact('dsn', 'username', 'password');
print_r($linkParams);
echo '<br>';
print_r(array_values($user));

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行结果图:

image.png


手写:


image.png


image.png


image.png



image.png


Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:看到你们的作业写得这么认真, 我很高兴, 也好有压力 , 必须上好课, 不辜负大家的信任
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post