!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/local/wp/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/   drwxr-xr-x
Free 711.99 GB of 879.6 GB (80.95%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     GetMetaSingleSniff.php (5.84 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * WordPress Coding Standard.
 *
 * @package WPCS\WordPressCodingStandards
 * @link    https://github.com/WordPress/WordPress-Coding-Standards
 * @license https://opensource.org/licenses/MIT MIT
 */

namespace WordPressCS\WordPress\Sniffs\WP;

use PHPCSUtils\Utils\PassedParameters;
use WordPressCS\WordPress\AbstractFunctionParameterSniff;

/**
 * Warns when calls to get meta functions use the $[meta_]key param without the $single param.
 *
 * Flags calls to get_(comment|post|site|term|user)_meta(), get_metadata(), get_metadata_default()
 * and get_metadata_raw() functions that include the $key/$meta_key parameter, but omit the $single
 * parameter. Omitting $single in this situation can result in unexpected return types and lead to
 * bugs.
 *
 * @link https://github.com/WordPress/WordPress-Coding-Standards/issues/2459
 *
 * @since 3.2.0
 */
final class GetMetaSingleSniff extends AbstractFunctionParameterSniff {

    /**
     * The phrase to use for the metric recorded by this sniff.
     *
     * @var string
     */
    const METRIC_NAME = 'get_*meta() function called with $single parameter';

    /**
     * The group name for this group of functions.
     *
     * @since 3.2.0
     *
     * @var string
     */
    protected $group_name = 'get_meta';

    /**
     * List of functions this sniff should examine.
     *
     * {@internal Once support for PHP < 5.6 is dropped, it is possible to create two class constants
     * representing the two different signatures of get meta functions to remove the duplication
     * of the name and position of the parameters.}
     *
     * @link https://developer.wordpress.org/reference/functions/get_comment_meta/
     * @link https://developer.wordpress.org/reference/functions/get_metadata/
     * @link https://developer.wordpress.org/reference/functions/get_metadata_default/
     * @link https://developer.wordpress.org/reference/functions/get_metadata_raw/
     * @link https://developer.wordpress.org/reference/functions/get_post_meta/
     * @link https://developer.wordpress.org/reference/functions/get_site_meta/
     * @link https://developer.wordpress.org/reference/functions/get_term_meta/
     * @link https://developer.wordpress.org/reference/functions/get_user_meta/
     *
     * @since 3.2.0
     *
     * @var array<string, array<string, array<string, int|string>>> Key is function name, value is
     *                                                              an array containing information
     *                                                              about the name and position of
     *                                                              the relevant parameters.
     */
    protected $target_functions = array(
        'get_comment_meta'     => array(
            'condition'   => array(
                'param_name' => 'key',
                'position'   => 2,
            ),
            'recommended' => array(
                'param_name' => 'single',
                'position'   => 3,
            ),
        ),
        'get_metadata'         => array(
            'condition'   => array(
                'param_name' => 'meta_key',
                'position'   => 3,
            ),
            'recommended' => array(
                'param_name' => 'single',
                'position'   => 4,
            ),
        ),
        'get_metadata_default' => array(
            'condition'   => array(
                'param_name' => 'meta_key',
                'position'   => 3,
            ),
            'recommended' => array(
                'param_name' => 'single',
                'position'   => 4,
            ),
        ),
        'get_metadata_raw'     => array(
            'condition'   => array(
                'param_name' => 'meta_key',
                'position'   => 3,
            ),
            'recommended' => array(
                'param_name' => 'single',
                'position'   => 4,
            ),
        ),
        'get_post_meta'        => array(
            'condition'   => array(
                'param_name' => 'key',
                'position'   => 2,
            ),
            'recommended' => array(
                'param_name' => 'single',
                'position'   => 3,
            ),
        ),
        'get_site_meta'        => array(
            'condition'   => array(
                'param_name' => 'key',
                'position'   => 2,
            ),
            'recommended' => array(
                'param_name' => 'single',
                'position'   => 3,
            ),
        ),
        'get_term_meta'        => array(
            'condition'   => array(
                'param_name' => 'key',
                'position'   => 2,
            ),
            'recommended' => array(
                'param_name' => 'single',
                'position'   => 3,
            ),
        ),
        'get_user_meta'        => array(
            'condition'   => array(
                'param_name' => 'key',
                'position'   => 2,
            ),
            'recommended' => array(
                'param_name' => 'single',
                'position'   => 3,
            ),
        ),
    );

    /**
     * Process the parameters of a matched function.
     *
     * @since 3.2.0
     *
     * @param int    $stackPtr        The position of the current token in the stack.
     * @param string $group_name      The name of the group which was matched.
     * @param string $matched_content The token content (function name) which was matched
     *                                in lowercase.
     * @param array  $parameters      Array with information about the parameters.
     *
     * @return void
     */
    public function process_parameters( $stackPtr, $group_name, $matched_content, $parameters ) {
        $condition   = $this->target_functions[ $matched_content ]['condition'];
        $recommended = $this->target_functions[ $matched_content ]['recommended'];

        $meta_key = PassedParameters::getParameterFromStack( $parameters, $condition['position'], $condition['param_name'] );
        if ( ! is_array( $meta_key ) ) {
            return;
        }

        $single = PassedParameters::getParameterFromStack( $parameters, $recommended['position'], $recommended['param_name'] );
        if ( is_array( $single ) ) {
            $this->phpcsFile->recordMetric( $stackPtr, self::METRIC_NAME, 'yes' );
            return;
        }

        $this->phpcsFile->recordMetric( $stackPtr, self::METRIC_NAME, 'no' );

        $tokens       = $this->phpcsFile->getTokens();
        $message_data = array(
            $condition['param_name'],
            $tokens[ $stackPtr ]['content'],
            $recommended['param_name'],
        );

        $this->phpcsFile->addWarning(
            'When passing the $%s parameter to %s(), it is recommended to also pass the $%s parameter to explicitly indicate whether a single value or multiple values are expected to be returned.',
            $stackPtr,
            'Missing',
            $message_data
        );
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0099 ]--