php解析json的类,php – 解析类似JSON的标记

这是我的解决方案:

你只需要输入{}标签的内部,你就会得到一个尊重字符串引号等的数组.

与其他答案不同,它处理“带引号的文本”并接受空格,制表符和混合格式.

$a = <<

commonName "Birthday Cake"

autoTag

category Item

path models/

timedExclusive 1

descSymbol BirthdayCakeDesc

dispSymbol BirthdayCakeDisp

flairCfg "Cake/Idle.aaf mat_BirthdayCake< /scale 1.5 /animation Cake/Idle.aaf 0 looping 0.8 /followDist 3.0 /moveSlew 0.0666 /moveVelThresh 10.0 /animEaseTime 1.0 /zOffRobot 2.7 /rotX 20.0 /zSpinDef bone_spinA 80.0"

//OnInspectOrUnlock Menus previewInit Cake/Idle.aaf BirthdayCake< /scale 1.5 /animation Cake/Idle.aaf 0 looping 0.8 /rotSpeed 30 /pos 3.5 0 1 /scaleMult 1.0

property BirthdaySpirit 10

EOT;

$lines = explode("\n", $a);

$parsed = array();

foreach($lines as $line) {

$chars = str_split($line);

$quoteOpen = false;

$lastField = "";

$lineFields = array();

foreach($chars as $c) {

if($c == '"') {

if($quoteOpen) {

$quoteOpen = false;

$lineFields[] = $lastField;

} else {

$quoteOpen = true;

}

$lastField = "";

continue;

}

if(preg_match("/\\s/", $c) === 0) {

$lastField .= $c;

} else {

if($lastField != "" && !$quoteOpen) {

$lineFields[] = $lastField;

$lastField = "";

} else {

if(!$lastField == "") {

$lastField .= $c;

}

}

}

}

if($lastField != "") {

$lineFields[] = $lastField;

}

$parsed[] = $lineFields;

}

echo '

'; print_r($parsed); echo '
';

输出:

Array

(

[0] => Array

(

[0] => commonName

[1] => Birthday Cake

)

[1] => Array

(

[0] => autoTag

)

[2] => Array

(

[0] => category

[1] => Item

)

[3] => Array

(

[0] => path

[1] => models/

)

[4] => Array

(

[0] => timedExclusive

[1] => 1

)

[5] => Array

(

[0] => descSymbol

[1] => BirthdayCakeDesc

)

[6] => Array

(

[0] => dispSymbol

[1] => BirthdayCakeDisp

)

[7] => Array

(

[0] => flairCfg

[1] => Cake/Idle.aaf mat_BirthdayCake< /scale 1.5 /animation Cake/Idle.aaf 0 looping 0.8 /followDist 3.0 /moveSlew 0.0666 /moveVelThresh 10.0 /animEaseTime 1.0 /zOffRobot 2.7 /rotX 20.0 /zSpinDef bone_spinA 80.0

)

[8] => Array

(

[0] => //OnInspectOrUnlock

[1] => Menus

[2] => previewInit

[3] => Cake/Idle.aaf

[4] => BirthdayCake<

[5] => /scale

[6] => 1.5

[7] => /animation

[8] => Cake/Idle.aaf

[9] => 0

[10] => looping

[11] => 0.8

[12] => /rotSpeed

[13] => 30

[14] => /pos

[15] => 3.5

[16] => 0

[17] => 1

[18] => /scaleMult

[19] => 1.0

)

[9] => Array

(

[0] => property

[1] => BirthdaySpirit

[2] => 10

)

)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值