php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #55640 Functionality of 'from' and 'len' as arrays is not implemented
Submitted: 2011-09-08 10:54 UTC Modified: 2013-02-18 00:35 UTC
Votes:2
Avg. Score:5.0 ± 0.0
Reproduced:2 of 2 (100.0%)
Same Version:2 (100.0%)
Same OS:0 (0.0%)
From: dmitry dot sychov at gmail dot com Assigned:
Status: No Feedback Package: *General Issues
PHP Version: 5.3.8 OS:
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: dmitry dot sychov at gmail dot com
New email:
PHP Version: OS:

 

 [2011-09-08 10:54 UTC] dmitry dot sychov at gmail dot com
Description:
------------
---
From manual page: http://www.php.net/function.substr-replace%23Changelog
---

I'am getting: "Functionality of 'from' and 'len' as arrays is not implemented"
when trying to pass arrays as per documentation.


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2011-09-13 22:17 UTC] kalle@php.net
-Status: Open +Status: Feedback
 [2011-09-13 22:17 UTC] kalle@php.net
Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with <?php and ends with ?>,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc. If the script requires a 
database to demonstrate the issue, please make sure it creates 
all necessary tables, stored procedures etc.

Please avoid embedding huge scripts into the report.


 [2011-10-10 14:45 UTC] rintaun at projectxero dot net
Example:
    <?php
    echo substr_replace('abcde', 'f', array(0, 1), array(1, 1));
    ?>

Expected output:
    ffcde

Actual output: 
    Warning: substr_replace(): Functionality of 'from' and 'len' as
    arrays is not implemented in - on line 2
    abcde
 [2011-12-12 15:35 UTC] send_no_hormel at hotmail dot com
I agree that it'd be very nice if one could pass a buffer as the input string, with arrays of offsets, lengths, and replacement strings (which is something I need to accomplish), but per the documentation, use of arrays for the replacement, offset, and lengths are only valid if the input string itself is passed as an array, and in that case, this function will return an array, not a string.

This is best categorized as a desired functionality, but it's not a bug.
 [2013-02-18 00:35 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 23:01:26 2024 UTC