php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #68777 \a escape not supported for double-quoted strings and heredocs
Submitted: 2015-01-09 10:27 UTC Modified: 2021-09-09 12:43 UTC
Votes:2
Avg. Score:3.0 ± 2.0
Reproduced:2 of 2 (100.0%)
Same Version:1 (50.0%)
Same OS:1 (50.0%)
From: ajf at ajf dot me Assigned:
Status: Open Package: Strings related
PHP Version: Irrelevant OS: *
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: ajf at ajf dot me
New email:
PHP Version: OS:

 

 [2015-01-09 10:27 UTC] ajf at ajf dot me
Description:
------------
Despite the support for the completely useless \v (vertical tab), \a, which produces the familiar terminal beep or flash that we all know and love, is conspicuously absent from PHP.

Test script:
---------------
<?php
echo "\a";

Expected result:
----------------
<terminal beeps/flashes/some other "alert" if supported>

Actual result:
--------------
\a

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2015-01-09 11:50 UTC] anon at anon dot anon
Adding that would break backwards compatibility, so they will probably not do it without overwhelming reason to, but you can always use "\7" instead.
 [2015-01-09 18:16 UTC] ajf at ajf dot me
It would, but we have previously added \e, \v, \f, the first one in 5.4. I think it's an acceptable break for a minor or major.
 [2021-09-09 12:43 UTC] cmb@php.net
-Type: Bug +Type: Feature/Change Request
 [2021-09-09 12:43 UTC] cmb@php.net
That doesn't look like a bug to me, but rather a feature request.
 [2021-10-15 18:17 UTC] anthon dot pang at gmail dot com
The "\b" (backspace) isn't supported in double-quoted strings either. (That said, the sequence is supported in json_decode() per the spec, https://www.json.org/json-en.html).
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 08:01:29 2024 UTC