A few lines of source code, error, but I do not see what is wrong

Source: Internet
Author: User
Tags deprecated ereg
Error:
( ! ) Deprecated:function split () is Deprecated in D:\wamp\www\my\ereg.php on line 3
Call Stack
# Time Memory Function location
1 0.0000 140880 {main} (): \ereg.php:0

Source:

$email = "9282281@qq.com";
$arr = Split (' @|\ ', $email);

while (list ($key, $values) = each ($arr)) {
echo $values. '
';
}
?>


Reply to discussion (solution)

Deprecated Chinese Explanation: deprecated
The split function is already in the list of the abolition, it is recommended not to use

Which function should I use?

Preg_split () use it instead

$arr = Preg_split ('/@|\./', $email);


Which function should I use?

In this case, I usually change the @. Of course the upside is the same
And then split it with explode.
Can avoid the regular engine, try not to

  • 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.