Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.php > #18487

Re: preg_match() return false

From Arno Welzel <usenet@arnowelzel.de>
Newsgroups comp.lang.php
Subject Re: preg_match() return false
Date 2020-12-28 15:16 +0100
Message-ID <i4u7moFi1ebU1@mid.individual.net> (permalink)
References <rs9s7j$1vsr$1@gioia.aioe.org> <i4rhc2F21bgU1@mid.individual.net> <rsa40i$1cub$1@gioia.aioe.org>

Show all headers | View raw


alex:

> Il 27/12/20 14:43, Arno Welzel ha scritto:
>> alex:
>>
>>> $regex = file_get_contents(
>>>       // Download URç: https://files.fm/f/9mwzkn2wr
>>>       'data/regex'
>>> );
>>> $subject = file_get_contents(
>>>       // Download URL: https://files.fm/f/8xeaybz5z
>>>       'data/subject'
>>> );
>>>
>>> $matching = preg_match($regex, $subject);
>>>
>>> if (0 === $matching) {
>>>       echo "Matching is 0";
>>> } elseif (FALSE === $matching) {
>>>       echo "Matching is FALSE";
>>> } else {
>>>       echo "OK!!!";
>>> }
>>>
>>> Output:
>>>
>>> Matching is FALSE
>>
>> What is the content of data/regex and data/subject? The URLs you
>> mentioned? Why do you think that
>>
>> https://files.fm/f/9mwzkn2wr
>>
>> and
>>
>> https://files.fm/f/8xeaybz5z
>>
>> Will match?
>>
>>
> 
> Instead of the content of the files I have published only the url, in 
> order to download and consult them more comfortably.
> But I see you didn't like this solution.
> 
> So I show them directly:
> 
> $ cat data/regex
> #Mock message .+¶
> .+¶
> .+
> \-\-\-\-\-

This is not a valid regular expression.


-- 
Arno Welzel
https://arnowelzel.de

Back to comp.lang.php | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

preg_match() return false alex <1j9448a02@lnx159sneakemail.com.invalid> - 2020-12-27 12:47 +0100
  Re: preg_match() return false tony@mountifield.org (Tony Mountifield) - 2020-12-27 12:50 +0000
    Re: preg_match() return false alex <1j9448a02@lnx159sneakemail.com.invalid> - 2020-12-27 14:21 +0100
  Re: preg_match() return false Arno Welzel <usenet@arnowelzel.de> - 2020-12-27 14:43 +0100
    Re: preg_match() return false alex <1j9448a02@lnx159sneakemail.com.invalid> - 2020-12-27 14:59 +0100
      Re: preg_match() return false Arno Welzel <usenet@arnowelzel.de> - 2020-12-28 15:16 +0100
    Re: preg_match() return false alex <1j9448a02@lnx159sneakemail.com.invalid> - 2020-12-27 15:11 +0100
  Re: preg_match() return false Ben Bacarisse <ben.usenet@bsb.me.uk> - 2020-12-27 15:33 +0000
    Re: preg_match() return false alex <1j9448a02@lnx159sneakemail.com.invalid> - 2020-12-27 16:50 +0100
      Re: preg_match() return false alex <1j9448a02@lnx159sneakemail.com.invalid> - 2020-12-27 17:14 +0100
        Re: preg_match() return false Ben Bacarisse <ben.usenet@bsb.me.uk> - 2020-12-28 02:02 +0000
          Re: preg_match() return false alex <1j9448a02@lnx159sneakemail.com.invalid> - 2020-12-28 10:38 +0100
          Re: PHP_EOL (was: preg_match() return false) "J.O. Aho" <user@example.net> - 2020-12-28 15:43 +0100
            Re: PHP_EOL alex <1j9448a02@lnx159sneakemail.com.invalid> - 2020-12-29 15:55 +0100

csiph-web