strtoupper上使用$ _GET变量的语法

时间:2013-11-22 19:41:31

标签: php

我如何使用get变量在此行上使用strtoupper函数?我需要将令牌作为大写返回。

else if(isset($_GET['token'])) {        

    $shopper = new Shopper($_GET['token'])
    or die('Could not instantiate a new Shopper from the \'token\' passed-in');

    $array = array();
    $shopper_lists = $shopper->get_lists(true);
    foreach ($shopper_lists as $list) {
         $array[] = $list->json();
    }

      echo json_encode($array); 

我会在isset之后或之前或其他方法完全插入吗?

在通过json编码返回后,当所有其他字段都在上面时,它全部小写。

很抱歉,如果这是一个noob问题......我只想弄清楚如何在这段代码中使用strtoupper函数。

2 个答案:

答案 0 :(得分:2)

喜欢这个吗?

$shopper = new Shopper(strtoupper($_GET['token']))

答案 1 :(得分:2)

在它进入之前把它放好:

$shopper = new Shopper( strtoupper($_GET['token']) )