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 namespace Drupal\Component\Uuid; /** * Generates a UUID using the Windows interna..

Decoded Output download

<?php

namespace Drupal\Component\Uuid;

/**
 * Generates a UUID using the Windows internal GUID extension.
 *
 * @see http://php.net/com_create_guid
 */
class Com implements UuidInterface {
  /**
   * {@inheritdoc}
   */
  public function generate() {
    // Remove {} wrapper and make lower case to keep result consistent.
    return strtolower(trim(com_create_guid(), '{}'));
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Drupal\Component\Uuid;

/**
 * Generates a UUID using the Windows internal GUID extension.
 *
 * @see http://php.net/com_create_guid
 */
class Com implements UuidInterface {
  /**
   * {@inheritdoc}
   */
  public function generate() {
    // Remove {} wrapper and make lower case to keep result consistent.
    return strtolower(trim(com_create_guid(), '{}'));
  }

}

Function Calls

None

Variables

None

Stats

MD5 0b3db2b379dfbb746a55a0ee46816a66
Eval Count 0
Decode Time 89 ms