Title: PHP 8+ Compatibility
Last modified: September 23, 2022

---

# PHP 8+ Compatibility

 *  [livingmiracles](https://wordpress.org/support/users/livingmiracles/)
 * (@livingmiracles)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/php-8-compatibility-82/)
 * Hello,
 * I’m curious if this plugin (Vimeography) has been tested to be compatible with
   PHP 8+? I understand that I will need to update the PHP on my websites and test
   it out on the actual websites to be sure, but hearing from the plugin developers
   whether this plugin has been tested to be compatible with PHP 8 or not will help
   give me a sense of how much testing and bug fixing there is likely to be before
   I start the process.
 * I appreciate any information you can give!

Viewing 1 replies (of 1 total)

 *  [Ben Davidson](https://wordpress.org/support/users/kzooben/)
 * (@kzooben)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/php-8-compatibility-82/#post-16093647)
 * The plugin is not compatible with PHP 8. Line 222 in “vimeography/lib/deprecated/
   core.php” uses a deprecated version of the implode() function. However, it seems
   to work without issue once you swap the $array and $separator params. So, instead
   of this block, which starts at line 220:
 *     ```
       // Add parameters which are common to all requests
           $params = array_merge( array(
           'fields' => implode( $fields, ',' ),
           'filter' => 'embeddable',
           'filter_embeddable' => 'true',
       ), $params );
       ```
   
 * You’ll use:
 *     ```
       // Add parameters which are common to all requests
           $params = array_merge( array(
           'fields' => implode( ',', $fields ),
           'filter' => 'embeddable',
           'filter_embeddable' => 'true',
       ), $params );
       ```
   
    -  This reply was modified 3 years, 8 months ago by [Ben Davidson](https://wordpress.org/support/users/kzooben/).
    -  This reply was modified 3 years, 8 months ago by [Ben Davidson](https://wordpress.org/support/users/kzooben/).

Viewing 1 replies (of 1 total)

The topic ‘PHP 8+ Compatibility’ is closed to new replies.

 * ![](https://ps.w.org/vimeography/assets/icon-256x256.png?rev=2625829)
 * [Vimeography: Vimeo Video Gallery WordPress Plugin](https://wordpress.org/plugins/vimeography/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/vimeography/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/vimeography/)
 * [Active Topics](https://wordpress.org/support/plugin/vimeography/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/vimeography/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/vimeography/reviews/)

## Tags

 * [php](https://wordpress.org/support/topic-tag/php/)

 * 1 reply
 * 2 participants
 * Last reply from: [Ben Davidson](https://wordpress.org/support/users/kzooben/)
 * Last activity: [3 years, 8 months ago](https://wordpress.org/support/topic/php-8-compatibility-82/#post-16093647)
 * Status: not resolved