2016-10-04 12 views
1

私は自分のコードでCassandraクラスを使用していますが、このエラーは常に表示されます。 "名前空間からクラスを読み込もうとしましたが、別の名前空間の" use "ステートメントを忘れましたか?ここに私のコード名前空間からクラスをロードしようとしましたが、別の名前空間に "use"ステートメントを忘れましたか?

DefaultController

<?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; 
} 
} 

Timestap.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() {} 
} 

あるとsymfony

答えて

0

設定ファイルでキースペースを定義していますか?

あなたは私が今のいずれかの鍵空間を使用していない例here

+0

を見つけることができ、私はsymfonyのでカサンドラを探検したいがため、私はこのエラーメッセージの「ロード・クラスにしようとしました」ということはできませんタイムスタンプ "をネームスペース" Cassandra "から削除しました。別のネームスペースに" use "ステートメントを忘れましたか? – Snorlax

+0

[Timestamp](https://datastax.github.io/php-driver/api/Cassandra/class.Timestamp/)クラスは、Cassandraに格納できるデータの一種であり、値自体ではありません。 PHPを使用したい場合、参考になるチュートリアル[here](https://academy.datastax.com/resources/getting-started-apache-cassandra-and-php) –

+0

ありがとうございますヘルプ:D – Snorlax

関連する問題