搜索
首页后端开发php教程使用 NP-Gravatar 获取 Gravatar 上的头像

  1. //Creating instance:
  2. $gravatarService = new NP_Service_Gravatar_Profiles();
  3. //Changing response format to XML:
  4. $gravatarService->setResponseFormat(new NP_Service_Gravatar_Profiles_ResponseFormat_Xml());
  5. //Getting profile data.
  6. $profile = $gravatarService->getProfileInfo('foo@bar.com');
  7. //$profile is instance of NP_Gravatar_Profile so we can access some of its properties.
  8. echo 'ID: ' . $profile->id . '
    ';
  9. echo 'Username: ' . $profile->getPreferredUsername() . '

    ';
  10. echo 'Photos:
    ';
  11. foreach($profile->getPhotos() as $photo) {
  12. echo '使用 NP-Gravatar 获取 Gravatar 上的头像
    ';
  13. }
  14. //Changing response format to JSON:
  15. $gravatarService->setResponseFormat(new NP_Service_Gravatar_Profiles_ResponseFormat_Json());
  16. //Getting profile data but forcing raw Zend_Http_Response object to be returned,
  17. //by passing boolean true for the second argument of the getProfileInfo() method:
  18. $response = $gravatarService->getProfileInfo('foo@bar.com', true);
  19. if ($response instanceof Zend_Http_Response) { //true!
  20. //do something
  21. }
  22. //Changing response format to QR Code:
  23. $gravatarService->setResponseFormat(new NP_Service_Gravatar_Profiles_ResponseFormat_QRCode());
  24. //QR Code response can not be exported NP_Gravatar_Profile object, as that
  25. //response format type does not implement
  26. //NP_Service_Gravatar_Profiles_ResponseFormat_ParserInterface interface,
  27. //so raw Zend_Http_Response object will allways be returned when using
  28. //that response format:
  29. $response = $gravatarService->getProfileInfo('foo@bar.com');
  30. echo $response->getHeader('Content-type'); //Prints "image/png".
复制代码
  1. //Gravatar XML-RPC implementation requires API key for the
  2. //authentication proccess. It can be retrieved on the page
  3. //for editing profile, on wordpress.com.
  4. $apiKey = 'someAPIKey';
  5. $email = 'foo.bar@foobar.com'; //Email address associated with the $apiKey.
  6. //Creating instance:
  7. $gravatarXmlRpc = new NP_Service_Gravatar_XmlRpc($apiKey, $email);
  8. //Checking whether there's a gravatar account registered with supplied email addresses.
  9. $result = $gravatarXmlRpc->exists(array(
  10. 'posa.nikola@gmail.com', //That's me. :D
  11. 'foo@example.com'
  12. ));
  13. $values = array_values($result);
  14. echo (bool)$values[0]; //Prints "true", as I do have Gravatar account. :)
  15. echo (bool)$values[1]; //Prints "false", as that second email address probably doesn't exist.
  16. //Getting user images on the current account:
  17. $images = $gravatarXmlRpc->userImages();
  18. //$image is instance of NP_Service_Gravatar_XmlRpc_UserImage,
  19. //as we didn't pass $raw parameter as "true" when executing
  20. //userImages() method.
  21. $image = $images[0];
  22. $imageUrl = $image->getUrl(); //Instance of Zend_Uri_Http.
  23. echo $image->getRating(); //Prints some rating (G, PG, R or X).
  24. //Saves some image to be a user image for the current account.
  25. $this->_gravatarXmlRpc->saveData('path/to/someImage.jpg', NP_Service_Gravatar_XmlRpc::PG_RATED);
复制代码
  1. //Generating Gravatar URL.
  2. echo '使用 NP-Gravatar 获取 Gravatar 上的头像 ;
  3. //Generating Gravatar URL and specifying size and rating options.
  4. echo '使用 NP-Gravatar 获取 Gravatar 上的头像 ;
  5. //Full parameter names are supported, too.
  6. echo '使用 NP-Gravatar 获取 Gravatar 上的头像 ;
  7. //Generating Gravatar URL and specifying file-type extension.
  8. echo '使用 NP-Gravatar 获取 Gravatar 上的头像 ;
  9. //Above view helper call will produce this URL:
  10. //http://www.gravatar.com/avatar/f3ada405ce890b6f8204094deb12d8a8.jpg?s=200
复制代码


声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
高流量网站的PHP性能调整高流量网站的PHP性能调整May 14, 2025 am 12:13 AM

TheSecretTokeEpingAphp-PowerEdwebSiterUnningSmoothlyShyunderHeavyLoadInVolvOLVOLVOLDEVERSALKEYSTRATICES:1)emplactopCodeCachingWithOpcachingWithOpCacheToreCescriptexecution Time,2)使用atabasequercachingCachingCachingWithRedataBasEndataBaseLeSendataBaseLoad,3)

PHP中的依赖注入:初学者的代码示例PHP中的依赖注入:初学者的代码示例May 14, 2025 am 12:08 AM

你应该关心DependencyInjection(DI),因为它能让你的代码更清晰、更易维护。1)DI通过解耦类,使其更模块化,2)提高了测试的便捷性和代码的灵活性,3)使用DI容器可以管理复杂的依赖关系,但要注意性能影响和循环依赖问题,4)最佳实践是依赖于抽象接口,实现松散耦合。

PHP性能:是否可以优化应用程序?PHP性能:是否可以优化应用程序?May 14, 2025 am 12:04 AM

是的,优化papplicationispossibleandessential.1)empartcachingingcachingusedapcutorediucedsatabaseload.2)优化的atabaseswithexing,高效Quereteries,and ConconnectionPooling.3)EnhanceCodeWithBuilt-unctions,避免使用,避免使用ingglobalalairaiables,并避免使用

PHP性能优化:最终指南PHP性能优化:最终指南May 14, 2025 am 12:02 AM

theKeyStrategiestosiminificallyBoostphpapplicationPermenCeare:1)useOpCodeCachingLikeLikeLikeLikeLikeCacheToreDuceExecutiontime,2)优化AtabaseInteractionswithPreparedStateTemtStatementStatementSandProperIndexing,3)配置

PHP依赖注入容器:快速启动PHP依赖注入容器:快速启动May 13, 2025 am 12:11 AM

aphpdepentioncontiveContainerIsatoolThatManagesClassDeptions,增强codemodocultion,可验证性和Maintainability.itactsasaceCentralHubForeatingingIndections,因此reducingTightCightTightCoupOulplingIndeSingantInting。

PHP中的依赖注入与服务定位器PHP中的依赖注入与服务定位器May 13, 2025 am 12:10 AM

选择DependencyInjection(DI)用于大型应用,ServiceLocator适合小型项目或原型。1)DI通过构造函数注入依赖,提高代码的测试性和模块化。2)ServiceLocator通过中心注册获取服务,方便但可能导致代码耦合度增加。

PHP性能优化策略。PHP性能优化策略。May 13, 2025 am 12:06 AM

phpapplicationscanbeoptimizedForsPeedAndeffificeby:1)启用cacheInphp.ini,2)使用preparedStatatementSwithPdoforDatabasequesies,3)3)替换loopswitharray_filtaray_filteraray_maparray_mapfordataprocrocessing,4)conformentnginxasaseproxy,5)

PHP电子邮件验证:确保正确发送电子邮件PHP电子邮件验证:确保正确发送电子邮件May 13, 2025 am 12:06 AM

phpemailvalidation invoLvesthreesteps:1)格式化进行regulareXpressecthemailFormat; 2)dnsvalidationtoshethedomainhasavalidmxrecord; 3)

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

WebStorm Mac版

WebStorm Mac版

好用的JavaScript开发工具

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具