示例#1
0
 /**
  * @param string $url The URL to benchmark
  * @param string $route The route to benchmark
  * @param string $params The parameters to pass to the route or URL, these can be a comma separated list of attribute:value
  *
  */
 public function actionAdd($url = null, $route = null, $params = null)
 {
     if ($url === null && $route === null) {
         throw new CException("Either a URL or a route is required!");
     }
     $model = new ABenchmark();
     $model->url = $url;
     $model->route = $route;
     if ($route !== null && $params !== null) {
         $model->params = array();
         foreach (explode(",", $params) as $param) {
             $param = explode(":", $param);
             $model->params[$param[0]] = $param[1];
         }
     }
     if ($model->save()) {
         echo "Benchmark Added\n";
     } else {
         echo "Failed to save benchmark\n";
         print_r($model->getErrors());
     }
 }