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


Groups > comp.lang.php > #18939 > unrolled thread

parse-ini-file: INI_SCANNER_RAW scanner mode

Started byFx ROOM <naso@tata.new>
First post2022-05-20 09:22 +0200
Last post2022-05-20 13:25 +0200
Articles 3 — 2 participants

Back to article view | Back to comp.lang.php


Contents

  parse-ini-file: INI_SCANNER_RAW scanner mode Fx ROOM <naso@tata.new> - 2022-05-20 09:22 +0200
    Re: parse-ini-file: INI_SCANNER_RAW scanner mode "J.O. Aho" <user@example.net> - 2022-05-20 10:23 +0200
      Re: parse-ini-file: INI_SCANNER_RAW scanner mode Fx ROOM <naso@tata.new> - 2022-05-20 13:25 +0200

#18939 — parse-ini-file: INI_SCANNER_RAW scanner mode

FromFx ROOM <naso@tata.new>
Date2022-05-20 09:22 +0200
Subjectparse-ini-file: INI_SCANNER_RAW scanner mode
Message-ID<t67fk9$1rs6$1@gioia.aioe.org>
https://www.php.net/manual/en/function.parse-ini-file.php
"If INI_SCANNER_RAW is supplied, then option values will not be parsed."

That is?

[toc] | [next] | [standalone]


#18940

From"J.O. Aho" <user@example.net>
Date2022-05-20 10:23 +0200
Message-ID<jep1g7Fop7hU1@mid.individual.net>
In reply to#18939
On 20/05/2022 09.22, Fx ROOM wrote:
> https://www.php.net/manual/en/function.parse-ini-file.php
> "If INI_SCANNER_RAW is supplied, then option values will not be parsed."
> 
> That is?

Yes, the setting value ain't parsed,

say you have a row like:

setting_name = "Less is \"more\""

  INI_SCANNER_NORMAL -> Less is "more"

  INI_SCANNER_RAW -> Less is \"more\"


-- 

  //Aho

[toc] | [prev] | [next] | [standalone]


#18941

FromFx ROOM <naso@tata.new>
Date2022-05-20 13:25 +0200
Message-ID<t67trp$ecf$1@gioia.aioe.org>
In reply to#18940
Il 20/05/22 10:23, J.O. Aho ha scritto:
> 
> On 20/05/2022 09.22, Fx ROOM wrote:
>> https://www.php.net/manual/en/function.parse-ini-file.php
>> "If INI_SCANNER_RAW is supplied, then option values will not be parsed."
>>
>> That is?
> 
> Yes, the setting value ain't parsed,
> 
> say you have a row like:
> 
> setting_name = "Less is \"more\""
> 
>   INI_SCANNER_NORMAL -> Less is "more"
> 
>   INI_SCANNER_RAW -> Less is \"more\"
> 
> 

thanks

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.php


csiph-web