Reading part of system file contents with PHP
Posted
by zx
on Stack Overflow
See other posts from Stack Overflow
or by zx
Published on 2010-04-22T07:03:20Z
Indexed on
2010/04/22
8:53 UTC
Read the original article
Hit count: 235
php
Hi,
I have a config
file, in etc/
called 1.conf
Here is the contents..
[2-main]
exten => s,1,Macro(speech,"hi {$VAR1} how is your day going?")
exten => s,4,Macro(dial,2,555555555)
exten => s,2,Macro(speech,"lkqejqe;j")
exten => s,3,Macro(speech,"hi there")
exten => s,5,Macro(speech,"this is a test ")
exten => s,6,Macro(speech,"testing 2")
exten => s,7,Macro(speech,"this is a test")
exten => 7,1,Goto(2-tester2,s,1)
exten => 1,1,Goto(2-aa,s,1)
[2-tester]
[2-aa]
exten => 1,1,Goto(2-main,s,1)
How can I read the content in between speech for example..
exten => s,6,Macro(speech,"testing 2")
Just get "testing 2"
from that.
Thank you in advance!
© Stack Overflow or respective owner