XenForo
Administrative
- Thread starter
- Admin
- #1
I tried to update huge count of posts in transaction:
PHP:
Read more
ادامه مطلب...
PHP:
Code:
$finder = \XF::finder( 'XF:Post' );
$db = \XF::db();
/** @var Post[] $posts */
$posts = $finder
->where( 'message_state', '=', 'visible' )
->fetch();
// $posts contains over 1000 elements...
$db->beginTransaction();
foreach ( $posts as $post ) {
$post->message = 'some updated message'...
Read more
ادامه مطلب...