GithubHelp home page GithubHelp logo

Comments (3)

mbanck avatar mbanck commented on July 30, 2024

Ok, so by manually bisecting the file I figured out it is this line:

$url = preg_replace('s/^internal:/', '', $url);

which makes sense, as it complains about s as delimiter. AIUI, the 's' is a PCRE modifier (see http://php.net/manual/en/reference.pcre.pattern.modifiers.php), is this a legit error from php7cc or a false positive?

from php7cc.

sstalle avatar sstalle commented on July 30, 2024

Seems like this is a legit error. I tried running your code on PHP 7.0.24 and got:

Warning: preg_replace(): Delimiter must not be alphanumeric or backslash in /var/app/test.php on line 4

Although you are right that s is a valid modifier, I don't think modifiers are allowed before the opening delimiter. You probably have to move s to the end of the regexp like this: '/^internal:/s'.

from php7cc.

mbanck avatar mbanck commented on July 30, 2024

OK, right, I have changed the code in the meantime accordingly.

However, I still think php7cc should be more informative in this case, and report a line number e.g.

from php7cc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.