在官方最新发布的 php-sdk 里,你可以通过 LeanQuery 来建立查询,如查找文章标题: $query = new LeanQuery("Post"); $query->startsWith("title", "Hello"); $query->endsWith("title", "world"); $query->contains("title", "worl"); $query->find(); 参照这里:https://github.com/leancloud/php-sdk
在官方最新发布的 php-sdk 里,你可以通过 LeanQuery 来建立查询,如查找文章标题:
参照这里:https://github.com/leancloud/php-sdk