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.
有人可以向我展示一个示例,我应该如何通过简单的查询使用 drupal 7 db_like 函数?
$result = db_select('person', 'p') ->fields('p') ->condition('name', db_like($prefix) . '%', 'LIKE') ->execute() ->fetchAll();
取自此页面。