Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php /** * This file is part of the Cloudinary PHP package. * * (c) Cloudinary * * F..

Decoded Output download

<?php
/**
 * This file is part of the Cloudinary PHP package.
 *
 * (c) Cloudinary
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Cloudinary\Test\Unit\Configuration;

use Cloudinary\Configuration\CloudConfig;
use Cloudinary\Test\Unit\UnitTestCase;

/**
 * Class CloudConfigTest
 */
class CloudConfigTest extends UnitTestCase
{
    public function testCloudFromUrl()
    {
        $cloud = CloudConfig::fromCloudinaryUrl($this->cloudinaryUrl);

        self::assertEquals(self::CLOUD_NAME, $cloud->cloudName);

        self::assertEquals(
            '',
            (string)$cloud
        );

        self::assertEquals(
            '{"cloud":{"cloud_name":"' . self::CLOUD_NAME . '","api_key":"' . self::API_KEY . '","api_secret":"' .
            self::API_SECRET . '"}}',
            json_encode($cloud)
        );

        self::assertEquals(
            '{"cloud":{"cloud_name":"' . self::CLOUD_NAME . '"}}',
            json_encode($cloud->jsonSerialize(false)) // exclude sensitive (passwords, etc) keys
        );
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * This file is part of the Cloudinary PHP package.
 *
 * (c) Cloudinary
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Cloudinary\Test\Unit\Configuration;

use Cloudinary\Configuration\CloudConfig;
use Cloudinary\Test\Unit\UnitTestCase;

/**
 * Class CloudConfigTest
 */
class CloudConfigTest extends UnitTestCase
{
    public function testCloudFromUrl()
    {
        $cloud = CloudConfig::fromCloudinaryUrl($this->cloudinaryUrl);

        self::assertEquals(self::CLOUD_NAME, $cloud->cloudName);

        self::assertEquals(
            '',
            (string)$cloud
        );

        self::assertEquals(
            '{"cloud":{"cloud_name":"' . self::CLOUD_NAME . '","api_key":"' . self::API_KEY . '","api_secret":"' .
            self::API_SECRET . '"}}',
            json_encode($cloud)
        );

        self::assertEquals(
            '{"cloud":{"cloud_name":"' . self::CLOUD_NAME . '"}}',
            json_encode($cloud->jsonSerialize(false)) // exclude sensitive (passwords, etc) keys
        );
    }
}

Function Calls

None

Variables

None

Stats

MD5 161b84f02f89e500c4ec171154b24272
Eval Count 0
Decode Time 109 ms