Idle in Snatch

Source: Internet
Author: User

Hi

Find old Cao Chat or quite happy, idle snatch ~ ~

1. Regular expressions

User registration verification of the case

<?php
$user = Array (
' Name ' = ' spark1985 ',
' Email ' = ' [email protected] ',
' Mobile ' = ' 13312345678 '
);
For general verification
if (empty ($user)) {
Die (' user information cannot be null ');
}
if (strlen ($user [' name ']) < 6) {
Die (' User name length is at least 6 bits ');
}
The user name must be a letter, a number, and an underscore
if (!preg_match ('/^\w+$/i ', $user [' name '])) {
Die (' User name is not legal ');
}
Verify that the mailbox is formatted correctly
if (!preg_match ('/^[\w\. [Email protected]\w+\.\w+$/i ', $user [' email ']) {
Die (' Email is not legal ');
}
The phone number must be 11 digits and start with 1
if (!preg_match ('/^1\d{10}$/i ', $user [' Mobile '])) {
Die (' mobile phone number is not legal ');
}
Echo ' User information verified successfully ';

-----------------

Preg_replace ('/\w+\.\w+/', ' $ ', $str);

Note here that ${1} is equivalent to $ $, which represents the first matched string, and the $ $ represents the second match. A sort of array-like ordering seems to

2. PHP

-----Session Control (Session&cookie)-----

---Cookie---

---

Cookies are data stored in the client's browser, and we use cookies to track and store user data. In general, cookies are returned from the server to the client via HTTP headers. Most Web programs support the operation of cookies because the cookie is in the header of HTTP, so it must be set before other information output, similar to the use limit of the header function.

PHP uses the Setcookie function to set the COOKIE, and any cookie,php sent back from the browser will automatically store it in the $_cookie global variable, so we can pass the $_cookie[' key ' To read a cookie value in the form of a

Cookies in PHP are very widely used, often used to store users ' login information, shopping carts, etc., and often use cookies to store session IDs to identify users when using session sessions, and the cookie has an expiration date, The cookie is automatically removed from the client. Cookies can also set the domain and path for security control

Idle in Snatch

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.