当前位置: 首页>>代码示例>>PHP>>正文


PHP sha256函数代码示例

本文整理汇总了PHP中sha256函数的典型用法代码示例。如果您正苦于以下问题:PHP sha256函数的具体用法?PHP sha256怎么用?PHP sha256使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了sha256函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: sm_raise_err

            if ($uage == 12) {
                $can_be_back = $umon - $regmon;
                $can_be_back *= 60;
            } else {
                $can_be_back = 13 - $uage;
                $can_be_back *= 365;
            }
            sm_raise_err("You are not 13 years of age or older. Come back soon!");
            setcookie('sm_not_old', 'yes', time() + 60 * 60 * 24 * $can_be_back);
            sm_die();
        }
        // Gender? WEE NEED NO STINKIN' GENDER!
        // No... wait! SocialMe is gender netural!
        // It's multisex enabled!
        // Hash password
        $hashed_pass = sha256($_POST['pass'] . $sm_secret);
        $sql_values = "('" . $_POST['name'] . "', '" . $_POST['mail'] . "', " . $uage . ", '" . $hashed_pass . ")";
        $sql_query = "INSERT INTO accounts VALUES " . $sql_values;
        sm_db_exec($sql_query);
        // The user MUST verify their mail
        $veracccode = md5(sha1(crc32(mt_rand() + time())));
        $_SESSION['veracccode'] = $veracccode;
        mail($uma, "Verify your " . $sm_name . "account", "Your " . $sm_name . " account needs verification. Your code is " . $veracccode . ". Return to the verification page and enter the code in.", "From: " . $sm_mail);
        header("Location: /v.php?ac_stamp=" . time());
    } else {
        sm_raise_err("The CAPTCHA was wrong! Sign up again and enter it correctly!");
        sm_die();
    }
}
?>
开发者ID:socialme,项目名称:socialme,代码行数:30,代码来源:r.php

示例2: add

 function add($id_user, $login_name)
 {
     $akey = sha256(make_code() . $login_name);
     $c = new Query();
     $c->value('user_id', $id_user);
     $c->value('akey', $akey);
     $this->insert($c);
     return $akey;
 }
开发者ID:byyeong,项目名称:dc2016,代码行数:9,代码来源:Member_auto.php

示例3: session_auth

function session_auth()
{
    if (array_key_exists("testid", $_REQUEST)) {
        return $_REQUEST["testid"];
    }
    $uri = $_SERVER["REQUEST_URI"];
    $session_id = $_REQUEST["session_id"];
    $session_key = $_REQUEST["session_key"];
    $pos = strpos($uri, "session_id=");
    if ($pos > 0) {
        $urix = substr($uri, 0, $pos) . substr($uri, $pos + 12 + strlen($session_id), strlen($uri));
        $uri = $urix;
    }
    if ($pos < 1) {
        $result = array("error_code" => "403.1", "error_desc" => "SESSION ID is missing.");
        echo json_encode($result);
        exit(0);
    }
    $pos = strpos($uri, "session_key=");
    if ($pos > 0) {
        $urix = substr($uri, 0, $pos) . substr($uri, $pos + 13 + strlen($session_key), strlen($uri));
        $uri = $urix;
    }
    if ($pos < 1) {
        $result = array("error_code" => "403.2", "error_desc" => "SESSION KEY is missing.");
        echo json_encode($result);
        exit(0);
    }
    if (substr($uri, strlen($uri) - 1, 1) == "&" || substr($uri, strlen($uri) - 1, 1) == "?") {
        $uri = substr($uri, 0, strlen($uri) - 1);
    }
    $es = load_ext_model("Mobile_sessions");
    $sess = $es->get_session($session_id);
    if (!$sess) {
        $result = array("error_code" => "403.3", "error_desc" => "Expired session.");
        echo json_encode($result);
        exit(0);
    }
    $auth_value = sha256($uri . $sess["session_key"]);
    if ($session_key != $auth_value) {
        $result = array("error_code" => "403.4", "error_desc" => "Invalid SESSION KEY.");
        echo json_encode($result);
        exit(0);
    }
    if (array_key_exists("session_expire_expand", $_GET)) {
        $exp_date = $_GET["session_expire_expand"];
        $es->extend($session_id, $exp_date);
    }
    return $sess["id_users"];
}
开发者ID:byyeong,项目名称:dc2016,代码行数:50,代码来源:info.php

示例4: microtime_float

<?php

/* Nanolink SHA256 Class Example */
// Include class, you may need to update the path to the class file
require_once 'sha256.inc.php';
// Source string
$input_str = $_GET['str'];
// Verifying Source string
if ($input_str == "") {
    echo "Error.";
    return;
}
// Timer function compatible with PHP4
function microtime_float()
{
    list($usec, $sec) = explode(" ", microtime());
    return (double) $usec + (double) $sec;
}
// Record time before hashing
$time1 = microtime_float();
// Perform hash
echo sha256($input_str);
// Record time after hashing
$time2 = microtime_float();
// Display difference
echo "<br />\nRuntime: " . ($time2 - $time1) . " seconds.";
return;
开发者ID:sqall01,项目名称:additional_plugins,代码行数:27,代码来源:example.php

示例5: validateRegistration

 private function validateRegistration()
 {
     loadLibrary("validation.lib");
     $user = secure($_POST["username"]);
     $display = secure($_POST["display"]);
     $pass1 = secure($_POST["pass1"]);
     $pass2 = secure($_POST["pass2"]);
     $email1 = secure($_POST["email1"]);
     $email2 = secure($_POST["email2"]);
     $res = valid_username($user);
     if ($res !== true) {
         $this->errors[] = $res;
     }
     $res = valid_displayname($display);
     if ($res !== true) {
         $this->errors[] = $res;
     }
     if ($pass1 !== $pass2) {
         $this->errors[] = "passwords_dont_match";
     } else {
         $res = valid_password($pass1);
         if ($res !== true) {
             $this->errors[] = $res;
         }
     }
     if ($email1 !== $email2) {
         $this->errors[] = "emails_dont_match";
     } else {
         $res = valid_email($email1);
         if ($res !== true) {
             $this->errors[] = $res;
         }
     }
     // Validate these next two for the most protective method.
     if ($_POST["hideemail"] == "no") {
         $hideemail = false;
     } else {
         $hideemail = true;
     }
     if ($_POST["receiveemail"] == "yes") {
         $receiveemail = true;
     } else {
         $receiveemail = false;
     }
     // Check ToS box
     if (!$_POST["tos"]) {
         $this->errors[] = "tos_not_checked";
     }
     if (count($this->errors) == 0) {
         // Add the user
         global $yakbb;
         $yakbb->db->insert("users", array("id" => 0, "username" => $user, "displayname" => $display, "password" => sha256($pass1), "email" => $email1, "emailshow" => $hideemail ? 0 : 1, "emailoptin" => $receiveemail ? 1 : 0, "activated" => 1, "activationcode" => "", "pending" => 0, "registeredtime" => time(), "lastip" => $yakbb->ip, "template" => $yakbb->config["default_template"], "language" => $yakbb->config["default_language"], "timezone" => $yakbb->config["default_timezone"]));
         redirect("?action=login&reg=true");
     }
 }
开发者ID:laiello,项目名称:yakbb,代码行数:55,代码来源:register.php

示例6: USN_drop_servce

function USN_drop_servce($userid)
{
    global $SSO_URL, $SECRET_KEY, $SERVICE_NAME;
    $_hex_org = $SECRET_KEY . $userid;
    include_once "sha256.php";
    $_hex = sha256($_hex_org);
    $_url = "http://" . $SSO_URL . "/drop_service/" . $SERVICE_NAME . "/" . $userid . "/?key=" . $_hex;
    $FILE = fopen($_url, "r");
    $read = fread($FILE, 4096);
    $ret = new DOMDocument();
    $ret->loadXML($read);
    $x = $ret->documentElement;
    $_error_code = "0";
    $_error_str = "";
    $_userinfo = array();
    foreach ($x->childNodes as $item) {
        switch ($item->nodeName) {
            case "error_code":
                $_error_code = $item->nodeValue;
                break;
            case "error_str":
                $_error_str = $item->nodeValue;
                break;
            case "datas":
                foreach ($item->childNodes as $item2) {
                    $_userinfo[$item2->nodeName] = $item2->nodeValue;
                }
                break;
        }
    }
    return $_error_code;
}
开发者ID:byyeong,项目名称:dc2016,代码行数:32,代码来源:USN_SSO.php

示例7: mysqli_escape_string

<?php

include 'connect.php';
//variables goes here
$name = mysqli_escape_string($_POST['name']);
$email = mysqli_escape_string($_POST['email']);
$password = sha256(sha512(mysqli_escape_string($_POST['password'])));
$confirm = sha256(sha512(mysqli_escape_string($_POST['confirm'])));
$send = $_POST['send'];
//top level domain for emails
$domains = array('@gmail.com', '@outlook.com', '@outlook.es', '@yahoo.com');
//validate form
function validate()
{
    $clean_email = strstr($email, '@');
    if (empty($name) || !isset($name)) {
        echo 'please fill all fields';
    }
    //check if array has a value
    if (!in_array($clean_email, $domains)) {
        echo 'please enter a valid email provider';
    }
    if ($password !== $confirm) {
        echo 'plase  check your password match';
    }
    if (isset($_POST['register'])) {
        start_session();
    }
}
validate();
function start_session()
开发者ID:AaronDRS,项目名称:smartphones-store,代码行数:31,代码来源:register.php

示例8: hash_wrapper

function hash_wrapper($str)
{
    switch (__OTP_HASH_FUNCTION) {
        case __OTP_MD5:
            if (function_exists(md5)) {
                return md5($str);
            }
        case __OTP_SHA1:
            if (function_exists(sha1)) {
                return sha1($str);
            }
        case __OTP_SHA256:
            if (function_exists(sha256)) {
                return sha256($str);
            }
        default:
            if (function_exists(sha1)) {
                return sha1($str);
            }
            print "DANGER WILL ROBINSON!!!";
            exit;
    }
}
开发者ID:mohammedkhalidm1,项目名称:otpauth,代码行数:23,代码来源:otp.php

示例9: bigSigma1_256

{
    $t1 = $x->RightRotate(2);
    $t2 = $x->RightRotate(13);
    $t3 = $x->RightRotate(22);
    return $t1->LogicalXOR($t2)->LogicalXOR($t3);
}
function bigSigma1_256($x)
{
    $t1 = $x->RightRotate(6);
    $t2 = $x->RightRotate(11);
    $t3 = $x->RightRotate(25);
    return $t1->LogicalXOR($t2)->LogicalXOR($t3);
}
function sigma0_256($x)
{
    $t1 = $x->RightRotate(7);
    $t2 = $x->RightRotate(18);
    $t3 = $x->LogicalRightShift(3);
    return $t1->LogicalXOR($t2)->LogicalXOR($t3);
}
function sigma1_256($x)
{
    $t1 = $x->RightRotate(17);
    $t2 = $x->RightRotate(19);
    $t3 = $x->LogicalRightShift(10);
    return $t1->LogicalXOR($t2)->LogicalXOR($t3);
}
echo sha256("lazy_one");
?>

开发者ID:ThQ,项目名称:qd,代码行数:29,代码来源:sha256.php

示例10: sha256

    echo sha256('');
    conclude();
} elseif (isset($_GET['register'])) {
    // Show registration home page
    webpage("register");
} elseif (isset($_GET['verify'])) {
    // Check if a registration key is valid
    echo 'INVALID!';
    $ikey = str_replace("-", "", $_GET['verify']);
    $rkey = sha256($key);
    if (strlen($ikey) != 16) {
        ob_end_clean();
        conclude('BADFORMAT!');
    }
    for ($i = -1; $i < 51; $i += 1) {
        $rkey = sha256($rkey);
        $ckey = substr($rkey, 0, 16);
        if ($ckey == $ikey) {
            if (strpos(file_get_contents("data/usedkeys.txt"), $ckey) == false) {
                ob_end_clean();
                echo 'OK';
            } else {
                ob_end_clean();
                echo 'USED!';
            }
            break;
        }
    }
} else {
    // Show the home page
    webpage("home");
开发者ID:BTCTaras,项目名称:vVv,代码行数:31,代码来源:index.php

示例11: hash_hmac_sha256_Broken

 function hash_hmac_sha256_Broken($data, $key, $raw_output = false)
 {
     $size = strlen(sha256('test'));
     $pack = 'H' . $size;
     $size /= 2;
     $opad = str_repeat(chr(0x5c), $size);
     $ipad = str_repeat(chr(0x36), $size);
     if (strlen($key) > $size) {
         $key = str_pad(pack($pack, sha256($key)), $size, chr(0x0));
     } else {
         $key = str_pad($key, $size, chr(0x0));
     }
     for ($i = 0; $i < strlen($key) - 1; $i++) {
         $opad[$i] = $opad[$i] ^ $key[$i];
         $ipad[$i] = $ipad[$i] ^ $key[$i];
     }
     $output = sha256($opad . pack($pack, sha256($ipad . $data)));
     return $raw_output ? pack($pack, $output) : $output;
 }
开发者ID:nickhype,项目名称:HackeyWalk-site-backup,代码行数:19,代码来源:functions.php

示例12: _sha256

 /**
  * Pure-PHP implementation of SHA256
  *
  * See {@link http://en.wikipedia.org/wiki/SHA_hash_functions#SHA-256_.28a_SHA-2_variant.29_pseudocode SHA-256 (a SHA-2 variant) pseudocode - Wikipedia}.
  *
  * @access private
  * @param String $m
  */
 function _sha256($m)
 {
     if (extension_loaded('suhosin')) {
         return pack('H*', sha256($m));
     }
     // Initialize variables
     $hash = array(0x6a09e667, 0.0, 0x3c6ef372, 2773480762.0, 0x510e527f, 2600822924.0, 0x1f83d9ab, 0x5be0cd19);
     // Initialize table of round constants
     // (first 32 bits of the fractional parts of the cube roots of the first 64 primes 2..311)
     static $k = array(0x428a2f98, 0x71374491, 3049323471.0, 0.0, 0x3956c25b, 0x59f111f1, 2453635748.0, 0.0, 3624381080.0, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0.0, 2614888103.0, 3248222580.0, 0.0, 0.0, 0xfc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da, 0.0, 2821834349.0, 2952996808.0, 3210313671.0, 0.0, 3584528711.0, 0x6ca6351, 0x14292967, 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0.0, 2456956037.0, 0.0, 2820302411.0, 3259730800.0, 3345764771.0, 0.0, 3600352804.0, 0.0, 0x106aa070, 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3, 0x748f82ee, 0x78a5636f, 2227730452.0, 2361852424.0, 0.0, 0.0, 0.0, 3329325298.0);
     // Pre-processing
     $length = strlen($m);
     // to round to nearest 56 mod 64, we'll add 64 - (length + (64 - 56)) % 64
     $m .= str_repeat(chr(0), 64 - ($length + 8 & 0x3f));
     $m[$length] = chr(0x80);
     // we don't support hashing strings 512MB long
     $m .= pack('N2', 0, $length << 3);
     // Process the message in successive 512-bit chunks
     $chunks = str_split($m, 64);
     foreach ($chunks as $chunk) {
         $w = array();
         for ($i = 0; $i < 16; $i++) {
             extract(unpack('Ntemp', $this->_string_shift($chunk, 4)));
             $w[] = $temp;
         }
         // Extend the sixteen 32-bit words into sixty-four 32-bit words
         for ($i = 16; $i < 64; $i++) {
             $s0 = $this->_rightRotate($w[$i - 15], 7) ^ $this->_rightRotate($w[$i - 15], 18) ^ $this->_rightShift($w[$i - 15], 3);
             $s1 = $this->_rightRotate($w[$i - 2], 17) ^ $this->_rightRotate($w[$i - 2], 19) ^ $this->_rightShift($w[$i - 2], 10);
             $w[$i] = $this->_add($w[$i - 16], $s0, $w[$i - 7], $s1);
         }
         // Initialize hash value for this chunk
         list($a, $b, $c, $d, $e, $f, $g, $h) = $hash;
         // Main loop
         for ($i = 0; $i < 64; $i++) {
             $s0 = $this->_rightRotate($a, 2) ^ $this->_rightRotate($a, 13) ^ $this->_rightRotate($a, 22);
             $maj = $a & $b ^ $a & $c ^ $b & $c;
             $t2 = $this->_add($s0, $maj);
             $s1 = $this->_rightRotate($e, 6) ^ $this->_rightRotate($e, 11) ^ $this->_rightRotate($e, 25);
             $ch = $e & $f ^ $this->_not($e) & $g;
             $t1 = $this->_add($h, $s1, $ch, $k[$i], $w[$i]);
             $h = $g;
             $g = $f;
             $f = $e;
             $e = $this->_add($d, $t1);
             $d = $c;
             $c = $b;
             $b = $a;
             $a = $this->_add($t1, $t2);
         }
         // Add this chunk's hash to result so far
         $hash = array($this->_add($hash[0], $a), $this->_add($hash[1], $b), $this->_add($hash[2], $c), $this->_add($hash[3], $d), $this->_add($hash[4], $e), $this->_add($hash[5], $f), $this->_add($hash[6], $g), $this->_add($hash[7], $h));
     }
     // Produce the final hash value (big-endian)
     return pack('N8', $hash[0], $hash[1], $hash[2], $hash[3], $hash[4], $hash[5], $hash[6], $hash[7]);
 }
开发者ID:nightcore125,项目名称:developer,代码行数:64,代码来源:Hash.php

示例13: session_start

<?php

require "connect.php";
require_once 'sha256.inc.php';
session_start();
if (isset($_POST['login'])) {
    if (trim($_POST['naam']) != "" && trim($_POST['wacht']) != "") {
        $naam = $_POST['naam'];
        $wacht = sha256($_POST['wacht']);
        $res = mysql_query("SELECT id, password, authlevel FROM beta_users where username='" . $naam . "'") or die(mysql_error());
        if (mysql_num_rows($res) > 0) {
            $row = mysql_fetch_assoc($res);
            if (!strcmp($wacht, $row['password'])) {
                if (isset($_POST['memory'])) {
                    setcookie("login_cookie", $row['id'] . ";" . $row['password'], time() + 3600 * 24 * 31 * 2, "/");
                    $ip = $_SERVER['REMOTE_ADDR'];
                    mysql_query("UPDATE beta_users SET user_lastip='" . $ip . "' WHERE id=" . $row['id']) or die(mysql_error());
                }
                mysql_query("update beta_users set forum_online='online' where username='" . $naam . "'") or die(mysql_error());
                setcookie('XNovaforum', $naam, time() + 60 * 60);
                $_SESSION['suser'] = $naam;
                //if($_SESSION['suser'] == 'Warsaalk' ){ mysql_query("UPDATE beta_users SET authlevel = 2 WHERE username='Warsaalk'") or die(mysql_error());}
                $_SESSION['slevel'] = $row['authlevel'];
                $_SESSION['stime'] = time();
                $_SESSION['smaxidle'] = 60 * 60;
            } else {
                mysql_query("update beta_users set forum_online='offline' where username='" . $_SESSION['suser'] . "'") or die(mysql_error());
                $_SESSION = array();
                session_destroy();
            }
            unset($row);
开发者ID:sonicmaster,项目名称:RPG,代码行数:31,代码来源:login.php

示例14: _resolveEncrypted

 /**
  * 登録済みかどうか
  * @param string $argDSN
  */
 protected static function _resolveEncrypted($argString, $argAlgorism = NULL)
 {
     debug('EncryptAlg=' . $argAlgorism);
     $string = $argString;
     if ('sha1' === strtolower($argAlgorism)) {
         $string = sha1($argString);
     } elseif ('sha256' === strtolower($argAlgorism)) {
         $string = sha256($argString);
     } elseif (FALSE !== strpos(strtolower($argAlgorism), 'aes')) {
         $string = Utilities::doHexEncryptAES($argString, self::$_authCryptKey, self::$_authCryptIV);
     }
     return $string;
 }
开发者ID:s-nakazawa,项目名称:UNICORN,代码行数:17,代码来源:Auth.class.php

示例15: uploadTmp

 /**
  * Uploads the images temporary to the cache folder
  * If the user doesn't save his entry the cron job will delete
  * the images
  *
  * @param   array  $file  - the file array
  *
  * @return boolean
  */
 public function uploadTmp($file)
 {
     $appl = JFactory::getApplication();
     // Total length of post back data in bytes.
     $contentLength = (int) $_SERVER['CONTENT_LENGTH'];
     $mediaHelper = new CompojoomHelperMedia();
     // Maximum allowed size of post back data in MB.
     $postMaxSize = $mediaHelper->toBytes(ini_get('post_max_size'));
     // Maximum allowed size of script execution in MB.
     $memoryLimit = $mediaHelper->toBytes(ini_get('memory_limit'));
     // Check for the total size of post back data.
     if ($postMaxSize > 0 && $contentLength > $postMaxSize || $memoryLimit != -1 && $contentLength > $memoryLimit) {
         $appl->enqueueMessage(JText::_('LIB_COMPOJOOM_ERROR_WARNUPLOADTOOLARGE'));
         return false;
     }
     // Do we have a file?
     if (isset($file['name'])) {
         JLoader::import('joomla.filesystem.file');
         $user = JFactory::getUser();
         $canUpload = $user->authorise('core.multimedia.create', $this->component);
         $params = JComponentHelper::getParams($this->component);
         $sizes = (array) $params->get('thumbs');
         // Some cameras just add whitespace, let's change this
         $file['name'] = str_replace(' ', '_', $file['name']);
         // Some users are uploading files with umlauts, change them to normal characters, otherwise we get an error on upload
         $file['name'] = preg_replace("/&([a-z])[a-z]+;/i", "\$1", htmlentities($file['name']));
         // The user doesn't seem to have upload privilegies
         if (!$canUpload) {
             $appl->enqueueMessage(JText::_('LIB_COMPOJOOM_YOU_DONT_HAVE_UPLOAD_PRIVILEGES'));
             return false;
         }
         // Check if we pass all other checks
         if (!$mediaHelper->canUpload($file, $this->component)) {
             return false;
         }
         // Get a (very!) randomised name
         $serverkey = JFactory::getConfig()->get('secret', '');
         $sig = microtime() . $serverkey;
         if (function_exists('sha256')) {
             $mangledname = sha256($sig);
         } elseif (function_exists('sha1')) {
             $mangledname = sha1($sig);
         } else {
             $mangledname = md5($sig);
         }
         $mangledname .= '_' . $file['name'];
         // ...and its full path
         $filepath = JPath::clean($this->getFilePath() . $mangledname);
         // If we have a name clash, abort the upload
         if (JFile::exists($filepath)) {
             $appl->enqueueMessage(JText::_('LIB_COMPOJOOM_ATTACHMENTS_ERR_NAMECLASH'));
             return false;
         }
         // Do the upload
         if (!JFile::upload($file['tmp_name'], $filepath)) {
             $appl->enqueueMessage(JText::_('LIB_COMPOJOOM_ATTACHMENTS_ERR_CANTJFILEUPLOAD'));
             return false;
         }
         // Get the MIME type
         if (function_exists('mime_content_type')) {
             $mime = mime_content_type($filepath);
         } elseif (function_exists('finfo_open')) {
             $finfo = finfo_open(FILEINFO_MIME_TYPE);
             $mime = finfo_file($finfo, $filepath);
         } else {
             $mime = 'application/octet-stream';
         }
         // Create a temporary thumb file
         $image = new CompojoomImage($filepath);
         $thumbs = $image->createThumbs($sizes['small']);
         $imageData = base64_encode(file_get_contents($thumbs[0]->getPath()));
         // Now remove the thumb
         JFile::delete($thumbs[0]->getPath());
         // Format the image SRC:  data:{mime};base64,{data};
         $src = 'data: ' . $mime . ';base64,' . $imageData;
         // Return the file info
         $fileData = array('name' => $mangledname, 'title' => JFile::stripExt($file['name']), 'thumbnailUrl' => $src, 'size' => $file['size'], 'type' => $file['type'], 'deleteType' => 'delete', 'url' => '', 'deleteUrl' => $this->deleteUrl . '&file=' . $mangledname);
         return $fileData;
     } else {
         $appl->enqueueMessage(JText::_('LIB_COMPOJOOM_ATTACHMENTS_ERR_NOFILE'));
         return false;
     }
 }
开发者ID:compojoom,项目名称:lib_compojoom,代码行数:92,代码来源:multimedia.php


注:本文中的sha256函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。