KnowHowLangs
(Unterschied zwischen Versionen)
(→PHP) |
(→Know how) |
||
Zeile 35: | Zeile 35: | ||
== PHP == | == PHP == | ||
=== Know how === | === Know how === | ||
- | [PHPMemoryUsage|PHP Speicherverbrauch ] | + | [[PHPMemoryUsage|PHP Speicherverbrauch]] |
+ | |||
=== Referenzen === | === Referenzen === | ||
=== Tutorials === | === Tutorials === | ||
=== FAQs === | === FAQs === | ||
=== Foren === | === Foren === |
Version vom 19:49, 6. Jan. 2010
Inhaltsverzeichnis |
C++
Referenzen
Tutorials
FAQs
- C++ FAQ Lite
- Bjarne Stroustrup's FAQ
- Bjarne Stroustrup's C++ Style and Technique FAQ
- FAQ: 'Microsoft Visual C++' (18.12.2004)
Foren
Snippets
CString CXmlNodeList::GetAttribute( int iItem, LPCTSTR strAttributeName ) { CXmlElementPtr pElement = m_pNodeList->Getitem( iItem ); VARIANT varValue = pElement->getAttribute( _bstr_t( strAttributeName ) ); if( varValue.bstrVal != NULL ) return CString( varValue ); else return CString( _T("") ); }