Detect if an object property is private in PHP

后端 未结 8 1349
太阳男子
太阳男子 2021-02-04 00:24

I\'m trying to make a PHP (5) object that can iterate through its properties, building an SQL query based only on its public properties, not its private ones.

As this pa

8条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-04 00:52

    You can use an array to store public properties, add some wrapper method and use array to insert data to SQL.

提交回复
热议问题