Ben elektronik tablo hücrelerini okumak ve yazmak için umutlar ile belgeleri açmak için Zend GData kullanıyorum

2 Cevap php

I'm not good at programming and my trying to open one of my spreadsheet documents. Below in the basic login im using, I then request a list all my spreadsheet, which is returned in $feed.

Ve şimdi, Ben bu yüzden hücrelerini okumak ve yazmak bir belgeyi açmadan ile doğru yolda değilim endişeliyim.

<?php

require_once '../library/Zend/Loader.php';
Zend_Loader::loadClass('Zend_Gdata_Spreadsheets');
Zend_Loader::loadClass('Zend_Gdata_ClientLogin');
$user="username";
$pass="user password";

// login
$service = Zend_Gdata_Spreadsheets::AUTH_SERVICE_NAME;
$client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, $service);

$spreadsheetService = new Zend_Gdata_Spreadsheets($client);
$feed = $spreadsheetService->getSpreadsheetFeed();

print_r ($feed);
?>

2 Cevap

Ben kimliği ile hangi sosyal ağ unuttum ve bu yüzden yeni bir Activ8ed var. Bir Saylondan gibi biraz.

I looked at the zend manual. I'm new to php so accessing Objects like $feed is still confusing. The Zend document needs to make better usage of http to expand the information present.

yani. zend kılavuzundan alıntı

"Given the spreadsheet key from the of a Zend_Gdata_Spreadsheets_SpreadsheetEntry object you've already retrieved, you can fetch a feed containing a list of worksheets associated with that spreadsheet."

$ Yem döner Zend_Gdata_Spreadsheets_SpreadsheetEntry nesne

Tamam ben aşağıdaki kod ile mevcut dosyaları görüntülemek için öğrendim.

foreach ($feed->entries as $entry) {
echo $entry->title->text .' '. $entry->content->text . "\n"; }

Ben okuma olmalıdır emin onu almaya başlıyor, ama düşünüyorum.

http://framework.zend.com/apidoc/core/Zend_Gdata/Spreadsheets/Zend_Gdata_Spreadsheets.html Is making more scene too. But it's missing links to http://code.google.com/apis/spreadsheets/docs/2.0/developers_guide_protocol.html#ListingSpreadsheets which is the structure on $feed, well a pointer to a segment of one.

Trying more to Understanding how objects class's and functions are used in PHP. reading http://stackoverflow.com/questions/539677/class-variables-scope-resolution-operator-and-different-versions-of-php

http://stackoverflow.com/questions/32145/is-this-a-reasonable-way-to-handle-getters-setters-in-a-php-class

Ben bu söz mü, http://code.google.com/apis/spreadsheets/docs/2.0/developers_guide_protocol.html#ListingSpreadsheets

http://zendguru.wordpress.com/2009/04/17/zend-framework-select-statement-and-where-clause-examples/

Sen doğru yoldasın. Bulduğunuz bilgileri kullanarak http://framework.zend.com/manual/en/zend.gdata.spreadsheets.html?

Sizin kod önemli bir adımdır tüm mevcut elektronik tablolar, listeler bir elektronik tablo yem oluyor. Bir liste tabanlı yem ya da bir hücre tabanlı yem almak için yukarıdaki linki takip etmek isteyeceksiniz.

Belgeler sadece (evet uzun,) onu okumanızı tavsiye ederim oldukça iyidir.