php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #74874 You can not typecast through array_map
Submitted: 2017-07-07 09:18 UTC Modified: 2017-07-07 09:33 UTC
From: body00 at gmail dot com Assigned:
Status: Not a bug Package: Arrays related
PHP Version: 7.1.7 OS: All
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 this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: body00 at gmail dot com
New email:
PHP Version: OS:

 

 [2017-07-07 09:18 UTC] body00 at gmail dot com
Description:
------------
When you try to typecast the values of an array such as 
$myArray=array_map("(string)",$myArray)
transforms $myArray into NULL

Test script:
---------------
$myArray=array(123,246);
$myArray=array_map("(string)",$myArray);


Expected result:
----------------
$myArray=array("123","246");

Actual result:
--------------
NULL

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2017-07-07 09:30 UTC] mail at pmmaga dot net
The cast itself is not a function. Using strval you can accomplish what you are looking for.

$myArray=array_map("strval",$myArray);
 [2017-07-07 09:33 UTC] fmargaine@php.net
-Status: Open +Status: Not a bug
 [2017-07-07 09:33 UTC] fmargaine@php.net
As explained by pmmaga, this is not a bug.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 06:01:35 2024 UTC