RedBeanPHP 的简写库

dev-master 2013-12-27 14:28 UTC

This package is not auto-updated.

Last update: 2024-09-28 15:18:24 UTC


README

RedBeanPHP 的简写库

注意:本文档的大部分内容未经测试,且我在编写过程中可能会添加一些假设

扩展外观

$type = R::_( 'type' ); // Dispense beans

$type = R::_( 'type', $id ); // Load beans

R::_( $bean ); // Store beans

了解更多关于外观的信息

一个用于查找豆类的简短、流畅的辅助工具

/**
 * Search for a project
 */
$project = R::$x->project->name($name)->find();

/**
 * Actually, if you can't find one, make one with that data
 */
$project = R::$x->project->name($name)->find(true);

了解更多关于查找辅助工具的信息