René's URL Explorer Experiment


Title: String syntax and PHP 8 · Issue #67 · firephp/firephp-core · GitHub

Open Graph Title: String syntax and PHP 8 · Issue #67 · firephp/firephp-core

X Title: String syntax and PHP 8 · Issue #67 · firephp/firephp-core

Description: The brace character extraction syntax is no longer allowed. @@ -1652,7 +1651,7 @@ class FirePHP { $name = $rawName; - if ($name{0} == "\0") { + if ($name[0] == "\0") { $parts = explode("\0", $name); $name = $parts[2]; } @@ -1839,17 +1838...

Open Graph Description: The brace character extraction syntax is no longer allowed. @@ -1652,7 +1651,7 @@ class FirePHP { $name = $rawName; - if ($name{0} == "\0") { + if ($name[0] == "\0") { $parts = explode("\0", $name)...

X Description: The brace character extraction syntax is no longer allowed. @@ -1652,7 +1651,7 @@ class FirePHP { $name = $rawName; - if ($name{0} == "\0") { + if ($name[0] == "\0") { $parts = ...

Opengraph URL: https://github.com/firephp/firephp-core/issues/67

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"String syntax and PHP 8","articleBody":"The brace character extraction syntax is no longer allowed.\r\n\r\n```\r\n@@ -1652,7 +1651,7 @@ class FirePHP {\r\n     \r\n                 $name = $rawName;\r\n \r\n-                if ($name{0} == \"\\0\") {\r\n+                if ($name[0] == \"\\0\") {\r\n                     $parts = explode(\"\\0\", $name);\r\n                     $name = $parts[2];\r\n                 }\r\n@@ -1839,17 +1838,17 @@ class FirePHP {\r\n             case 2:\r\n                 // return a UTF-16 character from a 2-byte UTF-8 char\r\n                 // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8\r\n-                return chr(0x07 \u0026 (ord($utf8{0}) \u003e\u003e 2))\r\n-                       . chr((0xC0 \u0026 (ord($utf8{0}) \u003c\u003c 6))\r\n-                       | (0x3F \u0026 ord($utf8{1})));\r\n+                return chr(0x07 \u0026 (ord($utf8[0]) \u003e\u003e 2))\r\n+                       . chr((0xC0 \u0026 (ord($utf8[0]) \u003c\u003c 6))\r\n+                       | (0x3F \u0026 ord($utf8[1])));\r\n \r\n             case 3:\r\n                 // return a UTF-16 character from a 3-byte UTF-8 char\r\n                 // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8\r\n-                return chr((0xF0 \u0026 (ord($utf8{0}) \u003c\u003c 4))\r\n-                       | (0x0F \u0026 (ord($utf8{1}) \u003e\u003e 2)))\r\n-                       . chr((0xC0 \u0026 (ord($utf8{1}) \u003c\u003c 6))\r\n-                       | (0x7F \u0026 ord($utf8{2})));\r\n+                return chr((0xF0 \u0026 (ord($utf8[0]) \u003c\u003c 4))\r\n+                       | (0x0F \u0026 (ord($utf8[1]) \u003e\u003e 2)))\r\n+                       . chr((0xC0 \u0026 (ord($utf8[1]) \u003c\u003c 6))\r\n+                       | (0x7F \u0026 ord($utf8[2])));\r\n         }\r\n \r\n         // ignoring UTF-32 for now, sorry\r\n@@ -1900,7 +1899,7 @@ class FirePHP {\r\n                 */\r\n                 for ($c = 0; $c \u003c $strlen_var; ++$c) {\r\n \r\n-                    $ord_var_c = ord($var{$c});\r\n+                    $ord_var_c = ord($var[$c]);\r\n \r\n                     switch (true) {\r\n                         case $ord_var_c == 0x08:\r\n@@ -1923,18 +1922,18 @@ class FirePHP {\r\n                         case $ord_var_c == 0x2F:\r\n                         case $ord_var_c == 0x5C:\r\n                             // double quote, slash, slosh\r\n-                            $ascii .= '\\\\' . $var{$c};\r\n+                            $ascii .= '\\\\' . $var[$c];\r\n                             break;\r\n \r\n                         case (($ord_var_c \u003e= 0x20) \u0026\u0026 ($ord_var_c \u003c= 0x7F)):\r\n                             // characters U-00000000 - U-0000007F (same as ASCII)\r\n-                            $ascii .= $var{$c};\r\n+                            $ascii .= $var[$c];\r\n                             break;\r\n \r\n                         case (($ord_var_c \u0026 0xE0) == 0xC0):\r\n                             // characters U-00000080 - U-000007FF, mask 110XXXXX\r\n                             // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8\r\n-                            $char = pack('C*', $ord_var_c, ord($var{$c + 1}));\r\n+                            $char = pack('C*', $ord_var_c, ord($var[$c + 1]));\r\n                             $c += 1;\r\n                             $utf16 = $this-\u003ejson_utf82utf16($char);\r\n                             $ascii .= sprintf('\\u%04s', bin2hex($utf16));\r\n@@ -1944,8 +1943,8 @@ class FirePHP {\r\n                             // characters U-00000800 - U-0000FFFF, mask 1110XXXX\r\n                             // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8\r\n                             $char = pack('C*', $ord_var_c,\r\n-                                         ord($var{$c + 1}),\r\n-                                         ord($var{$c + 2}));\r\n+                                         ord($var[$c + 1]),\r\n+                                         ord($var[$c + 2]));\r\n                             $c += 2;\r\n                             $utf16 = $this-\u003ejson_utf82utf16($char);\r\n                             $ascii .= sprintf('\\u%04s', bin2hex($utf16));\r\n@@ -1955,9 +1954,9 @@ class FirePHP {\r\n                             // characters U-00010000 - U-001FFFFF, mask 11110XXX\r\n                             // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8\r\n                             $char = pack('C*', $ord_var_c,\r\n-                                         ord($var{$c + 1}),\r\n-                                         ord($var{$c + 2}),\r\n-                                         ord($var{$c + 3}));\r\n+                                         ord($var[$c + 1]),\r\n+                                         ord($var[$c + 2]),\r\n+                                         ord($var[$c + 3]));\r\n                             $c += 3;\r\n                             $utf16 = $this-\u003ejson_utf82utf16($char);\r\n                             $ascii .= sprintf('\\u%04s', bin2hex($utf16));\r\n@@ -1967,10 +1966,10 @@ class FirePHP {\r\n                             // characters U-00200000 - U-03FFFFFF, mask 111110XX\r\n                             // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8\r\n                             $char = pack('C*', $ord_var_c,\r\n-                                         ord($var{$c + 1}),\r\n-                                         ord($var{$c + 2}),\r\n-                                         ord($var{$c + 3}),\r\n-                                         ord($var{$c + 4}));\r\n+                                         ord($var[$c + 1]),\r\n+                                         ord($var[$c + 2]),\r\n+                                         ord($var[$c + 3]),\r\n+                                         ord($var[$c + 4]));\r\n                             $c += 4;\r\n                             $utf16 = $this-\u003ejson_utf82utf16($char);\r\n                             $ascii .= sprintf('\\u%04s', bin2hex($utf16));\r\n@@ -1980,11 +1979,11 @@ class FirePHP {\r\n                             // characters U-04000000 - U-7FFFFFFF, mask 1111110X\r\n                             // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8\r\n                             $char = pack('C*', $ord_var_c,\r\n-                                         ord($var{$c + 1}),\r\n-                                         ord($var{$c + 2}),\r\n-                                         ord($var{$c + 3}),\r\n-                                         ord($var{$c + 4}),\r\n-                                         ord($var{$c + 5}));\r\n+                                         ord($var[$c + 1]),\r\n+                                         ord($var[$c + 2]),\r\n+                                         ord($var[$c + 3]),\r\n+                                         ord($var[$c + 4]),\r\n+                                         ord($var[$c + 5]));\r\n                             $c += 5;\r\n                             $utf16 = $this-\u003ejson_utf82utf16($char);\r\n                             $ascii .= sprintf('\\u%04s', bin2hex($utf16));\r\n```\r\n","author":{"url":"https://github.com/chrisgraham","@type":"Person","name":"chrisgraham"},"datePublished":"2020-10-20T20:13:17.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/67/firephp-core/issues/67"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:17f0f901-134d-5618-37ec-24518723afe4
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCD10:2096FF:157E469:1B1EDA4:697F2BFD
html-safe-nonce6f3051be25718d05f8a86ffecca4b4c628e28e59fc25ff6f8a6f9c3c297621e2
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDRDEwOjIwOTZGRjoxNTdFNDY5OjFCMUVEQTQ6Njk3RjJCRkQiLCJ2aXNpdG9yX2lkIjoiNDU0MzI1Mzg4OTY1ODMzNDIwNSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac9bb869fab1d6781a66474f27b3b11186bc069238b025d17e0916104a4ea020e4
hovercard-subject-tagissue:725909565
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/firephp/firephp-core/67/issue_layout
twitter:imagehttps://opengraph.githubassets.com/371ed9be7bbe5949d7ad2114c222af23beb75957d76ea13c1739e1c5a2bfc221/firephp/firephp-core/issues/67
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/371ed9be7bbe5949d7ad2114c222af23beb75957d76ea13c1739e1c5a2bfc221/firephp/firephp-core/issues/67
og:image:altThe brace character extraction syntax is no longer allowed. @@ -1652,7 +1651,7 @@ class FirePHP { $name = $rawName; - if ($name{0} == "\0") { + if ($name[0] == "\0") { $parts = explode("\0", $name)...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamechrisgraham
hostnamegithub.com
expected-hostnamegithub.com
None60279d4097367e16897439d16d6bbe4180663db828c666eeed2656988ffe59f6
turbo-cache-controlno-preview
go-importgithub.com/firephp/firephp-core git https://github.com/firephp/firephp-core.git
octolytics-dimension-user_id491793
octolytics-dimension-user_loginfirephp
octolytics-dimension-repository_id2055715
octolytics-dimension-repository_nwofirephp/firephp-core
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id2055715
octolytics-dimension-repository_network_root_nwofirephp/firephp-core
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release7c85641c598ad130c74f7bcc27f58575cac69551
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/firephp/firephp-core/issues/67#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffirephp%2Ffirephp-core%2Fissues%2F67
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffirephp%2Ffirephp-core%2Fissues%2F67
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=firephp%2Ffirephp-core
Reloadhttps://patch-diff.githubusercontent.com/firephp/firephp-core/issues/67
Reloadhttps://patch-diff.githubusercontent.com/firephp/firephp-core/issues/67
Reloadhttps://patch-diff.githubusercontent.com/firephp/firephp-core/issues/67
firephp https://patch-diff.githubusercontent.com/firephp
firephp-corehttps://patch-diff.githubusercontent.com/firephp/firephp-core
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Ffirephp%2Ffirephp-core
Fork 76 https://patch-diff.githubusercontent.com/login?return_to=%2Ffirephp%2Ffirephp-core
Star 230 https://patch-diff.githubusercontent.com/login?return_to=%2Ffirephp%2Ffirephp-core
Code https://patch-diff.githubusercontent.com/firephp/firephp-core
Issues 13 https://patch-diff.githubusercontent.com/firephp/firephp-core/issues
Pull requests 2 https://patch-diff.githubusercontent.com/firephp/firephp-core/pulls
Actions https://patch-diff.githubusercontent.com/firephp/firephp-core/actions
Security 0 https://patch-diff.githubusercontent.com/firephp/firephp-core/security
Insights https://patch-diff.githubusercontent.com/firephp/firephp-core/pulse
Code https://patch-diff.githubusercontent.com/firephp/firephp-core
Issues https://patch-diff.githubusercontent.com/firephp/firephp-core/issues
Pull requests https://patch-diff.githubusercontent.com/firephp/firephp-core/pulls
Actions https://patch-diff.githubusercontent.com/firephp/firephp-core/actions
Security https://patch-diff.githubusercontent.com/firephp/firephp-core/security
Insights https://patch-diff.githubusercontent.com/firephp/firephp-core/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/firephp/firephp-core/issues/67
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/firephp/firephp-core/issues/67
String syntax and PHP 8https://patch-diff.githubusercontent.com/firephp/firephp-core/issues/67#top
bughttps://github.com/firephp/firephp-core/issues?q=state%3Aopen%20label%3A%22bug%22
https://github.com/chrisgraham
https://github.com/chrisgraham
chrisgrahamhttps://github.com/chrisgraham
on Oct 20, 2020https://github.com/firephp/firephp-core/issues/67#issue-725909565
bughttps://github.com/firephp/firephp-core/issues?q=state%3Aopen%20label%3A%22bug%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.