Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/cassandra/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 试图从命名空间加载类您是否忘记了一个;使用「;另一名称空间的语句?_Php_Cassandra_Namespaces_Symfony - Fatal编程技术网

Php 试图从命名空间加载类您是否忘记了一个;使用「;另一名称空间的语句?

Php 试图从命名空间加载类您是否忘记了一个;使用「;另一名称空间的语句?,php,cassandra,namespaces,symfony,Php,Cassandra,Namespaces,Symfony,我在代码中使用了一个Cassandra类,这个错误总是显示为“试图从名称空间加载类您是否忘记了另一个名称空间的“use”语句?”下面是我的代码 默认控制器 <?php namespace Acme\SampleBundle\Controller; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Cassandra; class DefaultController extends Controller { pu

我在代码中使用了一个Cassandra类,这个错误总是显示为“试图从名称空间加载类您是否忘记了另一个名称空间的“use”语句?”下面是我的代码

默认控制器

<?php

namespace Acme\SampleBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Cassandra;

class DefaultController extends Controller
{
public function indexAction()
{
    $con = new Cassandra\Timestamp();

    echo $con;
}
}

是否在配置文件中定义键空间


您可以找到一个示例

您是否在配置文件中定义键空间


您可以找到一个示例

我现在没有使用任何键空间,我只是想在symfony中探索Cassandra,但我无法这样做,因为出现了以下错误消息“试图从名称空间“Cassandra”加载类“Timestamp”。您是否忘记了另一个名称空间的“use”语句类只是一种可以存储在Cassandra中的数据类型,而不是值本身。如果你想使用PHP,有一个教程可以帮助你。我现在没有使用任何键空间,我只是想在symfony中探索Cassandra,但我不能这样做,因为这个错误消息“试图从名称空间“Cassandra”加载类“Timestamp”。你忘记了另一个名称空间的“use”语句了吗类只是一种可以存储在Cassandra中的数据类型,而不是值本身。如果你想使用PHP,有一个教程可以帮助你
<?php

/**
* Copyright 2015-2016 DataStax, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Cassandra;

/**
* A PHP representation of the CQL `timestamp` datatype
*/
final class Timestamp implements Value
{
/**
 * Creates a new timestamp from either unix timestamp and microseconds or
 * from the current time by default.
 *
 * @param int $time Unix timestamp
 * @param int $usec Microseconds
 */
public function __construct($time = null, $usec = null) {}

/**
 * The type of this timestamp.
 *
 * @return Type
 */
public function type() {}

/**
 * Unix timestamp.
 *
 * @return int seconds
 * @see time
 */
public function time() {}

/**
 * Microtime from this timestamp
 *
 * @param bool $get_as_float Whether to get this value as float
 *
 * @return float|string Float or string representation
 * @see microtime
 */
public function microtime($get_as_float = false) {}

/**
 * Converts current timestamp to PHP DateTime.
 *
 * @return \DateTime PHP representation
 */
public function toDateTime() {}

/**
 * Returns a string representation of this timestamp.
 *
 * @return string timestamp
 */
public function __toString() {}
}