<?php
echo strlen("Hello world!"); // outputs 12
?>

<?php
echo str_word_count("Hello world!"); // outputs 2
?>

<?php
echo strrev("Hello world!"); // outputs !dlrow olleH
?>

<?php
echo strpos("Hello world!", "world"); // outputs 6.  If no match is found, it will return FALSE.
?>

<?php
echo str_replace("world", "Dolly", "Hello world!"); // outputs Hello Dolly!
?>

<?php
define("GREETING", "Welcome to W3Schools.com!");  // syntax: define(namevaluecase-insensitive)
echo GREETING;
?>

operation

===  $x === $y return true if $x is equal to $y, and they are of the same type

<>    $x <> $y    return true if $x is not equal to $y

!==   $x !== $y   return true if $x is not equal to $y, or they are not of the same

if (condition) {
    code to be executed if this condition is true;
} elseif (condition) {
    code to be executed if this condition is true;
} else {
    code to be executed if all conditions are false;
}

e.g:

<?php
$t = date("H");

if ($t < "10") {
    echo "Have a good morning!";
} elseif ($t < "20") {
    echo "Have a good day!";
} else {
    echo "Have a good night!";
}
?>

foreach ($array as $value) {
    code to be executed;
}

e.g:

<?php 
$colors = array("red", "green", "blue", "yellow");

foreach ($colors as $value) {
    echo "$value <br>";
}
?>

<?php
function setHeight($minheight = 50) {
    echo "The height is : $minheight <br>";
}

setHeight(350);
setHeight(); // will use the default value of 50
setHeight(135);
setHeight(80);
?>

<?php
$cars = array("Volvo", "BMW", "Toyota");
echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . ".";
?>

<?php
$cars = array("Volvo", "BMW", "Toyota");
echo count($cars);  //output 3
?>

PHP Associative Arrays:associative arrays are arrays that use named keys that you assigin to them

<?php

$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");
echo "Peter is " . $age['Peter'] . " years old.";
?>

<?php
$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");

foreach($age as $x => $x_value) {
    echo "Key=" . $x . ", Value=" . $x_value;
    echo "<br>";
}
?>

Sort Funcitions For Arrays

sort() -- sort arrays in ascending order

rsort() -- sort arrays in descending order

asort() -- sort associative arrays in ascending order, according to the value

ksort() -- sort associative arrays in ascending order, according to the key

arsort() -- sort associative arrays in descending order, according to the value

krsort() -- sort associative arrays in descending order, according to the key

Superglobals: PHP Global Variables

Several predefined variables in PHP are "superglobals", which means that they are always accessible, regardless of scope - and you can access them from any function, class or file without having to do anything special.

The PHO superglobal variables are:

$GLOBALS  $_SERVER  $_REQUEST  $_POST  $_GET  $_FILES  $_ENV  $_COOKIE  $_SESSION

<?php 
echo $_SERVER['PHP_SELF'];  // Returns the filename of the currency executing script
echo "<br>";
echo $_SERVER['SERVER_NAME'];  // Returns the IP address of the host server
echo "<br>";
echo $_SERVER['HTTP_HOST'];  // Returns the host header from the current request
echo "<br>";
echo $_SERVER['HTTP_REFERER'];  // Returns the complete URL of the current page
echo "<br>";
echo $_SERVER['HTTP_USER_AGENT'];
echo "<br>";
echo $_SERVER['SCRIPT_NAME'];  // Return the URI of the current page
?>

$_SERVER['GATEWAY_INTERFACE']  returns the version of the Common Gateway Interface the server is using

$_SERVER['SERVER_ADDR']  returns the IP address of the host server

$_SERVER['SERVER_SOFTWARE'] returns the server identification string

$_SERVER['SERVER_PROTOCOL'] returns the name and reversion of the information protocol

$_SERVER['REQUEST_METHOD'] return the request method used to access the page

$_SERVER['QUERY_STRING'] return the query string if the page is accessed via a query string

$_SERVER['HTTP_ACCEPT'] return the Accept header from the current request

$_SERVER['HTTPP_ACCEPT_CHARSET'] return the Accept_Charset header from the current request

$_SERVER['HTTP_HOST'] return the host header from the current request

$_SERVER['HTTP_REFERER'] return the complete URL of the current page

$_SERVER['HTTPS'] is the script queried through a secure HTTP protocol

$_SERVER['REMOTE_ADDR'] return the IP address from where the user is viewing the current page

$_SERVER['REMOTE_HOST'] return the host name from where the user is viewing the current page

$_SERVER['REMOTE_PORT'] return the port being used on the user's machine to communicate with the web server

$_SERVER['SCRIPT_FILENAME'] return the absolute pathname of the currently executing script

$_SERVER['SERVER_ADMIN'] return the value given to the SERVER_ADMIN directive in the web server configuration file

$_SERVER['SERVER_PORT'] return the port on the server machine being used by the web server for communication

$_SERVER['SERVER_SIGNATURE'] return the server version and virtual host name which are used by the web server for communication

$_SERVER['PATH_TRANSLATED'] return the file system based path to the current script

$_SERVER['SCRIPT_NAME'] return the path of current script

$_SERVER['SCRIPT_URI'] return the URI of the current page

PHP $_REQUEST is used to collect data after submitting an HTML form

<html>
<body>

<form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
  Name: <input type="text" name="fname">
  <input type="submit">
</form>

<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
    // collect value of input field
    $name = $_REQUEST['fname'];
    if (empty($name)) {
        echo "Name is empty";
    } else {
        echo $name;
    }
}
?>

</body>
</html>

PHP $_POST is used to collect form data after submitting an HTML form with method = "post",$_POST is also widely used to pass variables

<html>
<body>

<form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
  Name: <input type="text" name="fname">
  <input type="submit">
</form>

<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
    // collect value of input field
    $name = $_POST['fname'];
    if (empty($name)) {
        echo "Name is empty";
    } else {
        echo $name;
    }
}
?>

</body>
</html>

PHP $_GET is used to collect form data after submitting an HTML form with method="get".$_GET can also collect data sent in the URI

<html>
<body>

<?php 
echo "Study " . $_GET['subject'] . " at " . $_GET['web'];
?>

</body>
</html>

simple grammer的更多相关文章

  1. PHP设计模式(一)简单工厂模式 (Simple Factory For PHP)

    最近天气变化无常,身为程序猿的寡人!~终究难耐天气的挑战,病倒了,果然,程序猿还需多保养自己的身体,有句话这么说:一生只有两件事能报复你:不够努力的辜负和过度消耗身体的后患.话不多说,开始吧. 一.什 ...

  2. Design Patterns Simplified - Part 3 (Simple Factory)【设计模式简述--第三部分(简单工厂)】

    原文链接:http://www.c-sharpcorner.com/UploadFile/19b1bd/design-patterns-simplified-part3-factory/ Design ...

  3. WATERHAMMER: A COMPLEX PHENOMENON WITH A SIMPLE SOLUTION

    开启阅读模式 WATERHAMMER A COMPLEX PHENOMENON WITH A SIMPLE SOLUTION Waterhammer is an impact load that is ...

  4. BZOJ 3489: A simple rmq problem

    3489: A simple rmq problem Time Limit: 40 Sec  Memory Limit: 600 MBSubmit: 1594  Solved: 520[Submit] ...

  5. Le lié à la légèreté semblait être et donc plus simple

    Il est toutefois vraiment à partir www.runmasterfr.com/free-40-flyknit-2015-hommes-c-1_58_59.html de ...

  6. ZOJ 3686 A Simple Tree Problem

    A Simple Tree Problem Time Limit: 3 Seconds      Memory Limit: 65536 KB Given a rooted tree, each no ...

  7. 设计模式之简单工厂模式Simple Factory(四创建型)

    工厂模式简介. 工厂模式专门负责将大量有共同接口的类实例化 工厂模式可以动态决定将哪一个类实例化,不必事先知道每次要实例化哪一个类. 工厂模式有三种形态: 1.简单工厂模式Simple Factory ...

  8. HDU 5795 A Simple Nim 打表求SG函数的规律

    A Simple Nim Problem Description   Two players take turns picking candies from n heaps,the player wh ...

  9. 关于The C compiler "arm-none-eabi-gcc" is not able to compile a simple test program. 的错误自省...

    在 GCC ARM Embedded https://launchpad.net/gcc-arm-embedded/ 上面下载了个arm-none-eabi-gcc 用cmake 编译时 #指定C交叉 ...

随机推荐

  1. Java 读写方案

    使用Java操作文本文件的方法详解 摘要: 最初java是不支持对文本文件的处理的,为了弥补这个缺憾而引入了Reader和Writer两个类 最初java是不支持对文本文件的处理的,为了弥补这个缺憾而 ...

  2. ocument的createDocumentFragment()方法

    在<javascript高级程序设计>一书的6.3.5:创建和操作节点一节中,介绍了几种动态创建html节点的方法,其中有以下几种常见方法: · crateAttribute(name): ...

  3. iscroll4框架解析[webapp开发](转)

    概要 iScroll 4 这个版本完全重写了iScroll这个框架的原始代码.这个项目的产生完全是因为移动版webkit浏览器(诸如iPhone,iPad,Android 这些系统上广泛使用)提供了一 ...

  4. 所思所想 js模板引擎

    将服务端生成的HTML标记的事情交给了客户端来做 那么服务端的职责是什么呢? 职责就是处理最终的返回结果,纯数据  handler

  5. netbios wins dns LLMNR

    NetBIOS名称 Network Basic Input/Output System  (RFC-1001,1002)网络基本输入/输出系统协议 NetBIOS是一种高级网络接口,最初是在硬件中实 ...

  6. html标签marquee实现走马灯效果(文字浮动)

    marquee标签实现文字或图片的移动效果 <marquee direction = "right">文字<marquee>

  7. 使用MediaRecorder录制视频短片

    MediaRecorder除了可用于录制音频之外,还可用于录制视频,使用MediaRecorder录制视频与录制音频的步骤基本相同.只是录制视频时不仅需要采集声音,还需要采集图像.为了让MediaRe ...

  8. [Js]评分星星

    效果: 鼠标移到星星上,这颗星星及之前的全亮,提示文字出现,根绝星星数量显示不同文字,移出灭掉,文字消失 思路: 1.定义一个数组,来存放不同的文字 2.存放星星的索引值(要在i定义赋值后,即在for ...

  9. cmd打开控制面板及其他命令

    如果你在权限较小的域用户的机器上,要做一些管理操作,就不可避免的要使用cmd打开一些以前只能在图形界面里打开的程序.下面是我收集的一些常用操作. 以某个身份启动程序:runas /user:it\n1 ...

  10. Delphi的TListView控件拖放选定行操作

    http://www.tansoo.cn/?p=401 Delphi的TListView控件拖放选定行操作的例子,效果图如下:TListView控件拖动选定行到指定位置 具体实现步骤: 一.新建一个D ...