Jump to content

AngelGabriel

New Members
  • Posts

    4
  • Joined

  • Last visited

AngelGabriel's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi. Pls give me file or link on the binary files ffmpeg-php (php5.5 vc9 x64). tnx
  2. Hi. I need check existing doc in collection. public function insertMuvik( $mu ) { if( is_array( $mu ) ) { foreach( $mu AS $k => $v ) { if( !in_array( $k, self::$allow ) ) { unset( $mu[$k] ); } } $docOnTtitle = Base::$db->objects->find( array( 'title' => $mu['title'] ) )->count(); $docOnYoutubeID = Base::$db->objects->find( array( 'youtube_id' => $mu['youtube_id'] ) )->count(); if ( !$docOnTtitle && !$docOnYoutubeID ) { $res = Base::$db->objects->insert( $mu ); if( $res['err'] == NULL ) { return $mu['_id']; } } else { return false; } } return false; } this method, do not work. maybe need try $exist. Pleas help.
  3. I don't know APC work or no? How to check? How to compare performance before and after installing APC?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.