Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I need an escape sequence for - or the minus sign for php. The object has a name-value pair where the name happens to be having - between 2 words.

I can't do this using the standard escape sequence (- isn't anyways documented).

I can store the name in a $myvariable which can be used but out of curiosity is it possible to do the following?

$myobject->myweird-name

This gives an Error because of -

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
534 views
Welcome To Ask or Share your Answers For Others

1 Answer

This is what you need:

$myobject->{'myweird-name'};

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...