Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 php 中创建了一个类别数组,如下所示:
$cats=array("Coffee", "Beverages", "Drinks", "Snacks/Desserts");
但我想让它像动态一样。假设当我通过我的网站更新我的数据库(删除-更改名称-添加新类别)时,我需要这个数组来跟踪这些更新。
有可能吗?否则,我该如何处理?
不,Array 无法关注您的更新。但是您可以根据数据库内容创建数组。这通常是所有网站所做的。
您确实可以,只需使用 array_push() !
http://php.net/manual/en/function.array-push.php
它将您传递的变量推到数组的末尾,并增加其大小。