$data = "--- ID |23153572 KullaniciAdi AD-YUYUTA-5576 IP |- IP Address |123.123.123.123 Created at |2015-04-25 22:39:02 Location |On 'server' +++--- ID |23153572 KullaniciAdi AD-GSDA-5576 IP |- IP Address |222.222.222.222 Created at |2015-04-25 22:39:02 Location |On 'server' +++--- ID |23153572 KullaniciAdi AD-DENEME-5576 IP |- IP Address |333.333.333.333 Created at |2015-04-25 22:39:02 Location |On 'server' +++";
preg_match_all('@KullaniciAdi AD-(\w+)-5576 IP \|- IP Address \|(.*?) Created at \|(.*?) Location@', $data, $f);
print_r($f);
//ekran çıktısı
/*
Array
(
[0] => Array
(
[0] => KullaniciAdi AD-YUYUTA-5576 IP |- IP Address |123.123.123.123 Created at |2015-04-25 22:39:02 Location
[1] => KullaniciAdi AD-GSDA-5576 IP |- IP Address |222.222.222.222 Created at |2015-04-25 22:39:02 Location
[2] => KullaniciAdi AD-DENEME-5576 IP |- IP Address |333.333.333.333 Created at |2015-04-25 22:39:02 Location
)
[1] => Array
(
[0] => YUYUTA
[1] => GSDA
[2] => DENEME
)
[2] => Array
(
[0] => 123.123.123.123
[1] => 222.222.222.222
[2] => 333.333.333.333
)
[3] => Array
(
[0] => 2015-04-25 22:39:02
[1] => 2015-04-25 22:39:02
[2] => 2015-04-25 22:39:02
)
)
*/