dcobwebs
v2.2.7

dcobwebs(數據庫蜘蛛網)PHP框架,使得更容易處理數據和非常簡單的NOSQL。
演示:查看
開始安裝。
composer require rioagungpurnomo/dcobwebs使用dcobwebs並創建包含名稱和生物字段的用戶表的簡單示例。
require ' vendor/autoload.php ' ;
use Rioagungpurnomo Dcobwebs Dcobwebs ;
Dcobwebs:: add ( ' users ' , [ ' name ' , ' bio ' ]);在表中添加新數據。
Dcobwebs:: table (table)-> create (array);在表中更新數據。
Dcobwebs:: table (table)-> update (id, array);在表中刪除數據。
Dcobwebs:: table (table)-> delete (id);計算表中有多少數據。
Dcobwebs:: table (table)-> count ();在表中顯示一個具有特定ID的數據。
Dcobwebs:: table (table)-> find (id);僅檢索表中的某些數據。
Dcobwebs:: table (table)-> where (field, value);在表中顯示所有數據。
Dcobwebs:: table (table)-> all ();通過ASC(上升)在表中顯示所有數據。
Dcobwebs:: table (table)-> asc (field);通過DESC(下降)在表中顯示所有數據。
Dcobwebs:: table (table)-> desc (field);在數據庫中添加新表。
Dcobwebs:: add (name, array);在數據庫中顯示所有表。
Dcobwebs:: list ();刪除數據庫中的表。
Dcobwebs:: remove (table);將表名稱更改為數據庫中的新表名。
Dcobwebs:: rename (old_name, new_name);計算數據庫中有多少個表。
Dcobwebs:: calculate ();將現有字段添加到數據庫中的表。
Dcobwebs:: table (table)-> create_field (array);刪除數據庫中表中的現有字段。
Dcobwebs:: table (table)-> delete_field (field);顯示數據庫中表中的字段。
Dcobwebs:: table (table)-> list_field ();加密字符串。
Dcobwebs:: encrypt (plaintext, key, iv);解密字符串。
Dcobwebs:: decrypt (ciphertext, key, iv);通過電子郵件與我聯繫: [email protected] ,給我輸入或建議,或要求DCOBWEBS成為您幫助的第一工具的其他功能。