php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #20721 mb_split not splitting ...
Submitted: 2002-11-29 06:20 UTC Modified: 2002-11-29 11:57 UTC
From: jc at mega-bucks dot co dot jp Assigned:
Status: Wont fix Package: mbstring related
PHP Version: 4.2.2 OS: Red Hat Linux 7.2
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: jc at mega-bucks dot co dot jp
New email:
PHP Version: OS:

 

 [2002-11-29 06:20 UTC] jc at mega-bucks dot co dot jp
The following code using mb_split() is not working as expected:

$EMAIL = $_POST["email"];
echo "ecoding was ".mb_detect_encoding($EMAIL)."<BR>";
list($a, $b) = mb_split("@", $EMAIL);
echo "a is $a <BR>"; 
echo "b is $b <BR>"; 

OUTPUT:

??????Test.Com
ecoding was EUC-JP

Notice: Undefined offset: 1 in update_email_pw.php on line 38
a is ??????Test.Com
b is 

My internal encodingis set to EUC_JP so I would think that even though I used the ASCII "@" it should work for splitting.

Jc

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-11-29 11:56 UTC] moriyoshi@php.net
This is not a bug. mb_split() distinguishes full-width and half-width characters. So you should simply parenthesise both characters as a regex character class like

list($a, $b) = mb_split("[@??]", $EMAIL);

 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Sun Jan 05 02:01:28 2025 UTC