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
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: ondrej at sury dot org
New email:
PHP Version: OS:

 

 [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

Pull Requests

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: Sun Oct 27 16:01:27 2024 UTC