php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #34116 support for variable length printf strings
Submitted: 2005-08-13 11:35 UTC Modified: 2020-06-19 10:23 UTC
Votes:4
Avg. Score:3.8 ± 1.3
Reproduced:3 of 3 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: ondrej at sury dot org Assigned: nikic (profile)
Status: Closed Package: Strings related
PHP Version: 4CVS-2005-08-13 (stable) OS:
Private report: No CVE-ID: None
 [2005-08-13 11:35 UTC] ondrej at sury dot org
Description:
------------
PHP's printf does not support variable width/precision.

Compare that with "printf '%*s' 10 'foobar'" in a shell script.


Reproduce code:
---------------
<?php

$length = 10;

printf("%*s", $length, "foobar");
?>


Expected result:
----------------
    foobar

Actual result:
--------------
s

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-12-30 22:59 UTC] cmb@php.net
-Package: Feature/Change Request +Package: Strings related
 [2020-04-21 16:34 UTC] nikic@php.net
-Assigned To: +Assigned To: nikic
 [2020-06-19 10:23 UTC] nikic@php.net
-Status: Assigned +Status: Closed
 [2020-06-19 10:23 UTC] nikic@php.net
This is supported as of PHP 8.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 11:01:28 2024 UTC