namespace Google\Site_Kit_Dependencies\GuzzleHttp\Psr7; use Google\Site_Kit_Dependencies\Psr\Http\Message\MessageInterface; use Google\Site_Kit_Dependencies\Psr\Http\Message\RequestInterface; use Google\Site_Kit_Dependencies\Psr\Http\Message\StreamInterface; use Google\Site_Kit_Dependencies\Psr\Http\Message\UriInterface; /** * Returns the string representation of an HTTP message. * * @param MessageInterface $message Message to convert to a string. * * @return string * * @deprecated str will be removed in guzzlehttp/psr7:2.0. Use Message::toString instead. */ function str(\Google\Site_Kit_Dependencies\Psr\Http\Message\MessageInterface $message) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Message::toString($message); } /** * Returns a UriInterface for the given value. * * This function accepts a string or UriInterface and returns a * UriInterface for the given value. If the value is already a * UriInterface, it is returned as-is. * * @param string|UriInterface $uri * * @return UriInterface * * @throws \InvalidArgumentException * * @deprecated uri_for will be removed in guzzlehttp/psr7:2.0. Use Utils::uriFor instead. */ function uri_for($uri) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Utils::uriFor($uri); } /** * Create a new stream based on the input type. * * Options is an associative array that can contain the following keys: * - metadata: Array of custom metadata. * - size: Size of the stream. * * This method accepts the following `$resource` types: * - `Psr\Http\Message\StreamInterface`: Returns the value as-is. * - `string`: Creates a stream object that uses the given string as the contents. * - `resource`: Creates a stream object that wraps the given PHP stream resource. * - `Iterator`: If the provided value implements `Iterator`, then a read-only * stream object will be created that wraps the given iterable. Each time the * stream is read from, data from the iterator will fill a buffer and will be * continuously called until the buffer is equal to the requested read size. * Subsequent read calls will first read from the buffer and then call `next` * on the underlying iterator until it is exhausted. * - `object` with `__toString()`: If the object has the `__toString()` method, * the object will be cast to a string and then a stream will be returned that * uses the string value. * - `NULL`: When `null` is passed, an empty stream object is returned. * - `callable` When a callable is passed, a read-only stream object will be * created that invokes the given callable. The callable is invoked with the * number of suggested bytes to read. The callable can return any number of * bytes, but MUST return `false` when there is no more data to return. The * stream object that wraps the callable will invoke the callable until the * number of requested bytes are available. Any additional bytes will be * buffered and used in subsequent reads. * * @param resource|string|int|float|bool|StreamInterface|callable|\Iterator|null $resource Entity body data * @param array $options Additional options * * @return StreamInterface * * @throws \InvalidArgumentException if the $resource arg is not valid. * * @deprecated stream_for will be removed in guzzlehttp/psr7:2.0. Use Utils::streamFor instead. */ function stream_for($resource = '', array $options = []) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Utils::streamFor($resource, $options); } /** * Parse an array of header values containing ";" separated data into an * array of associative arrays representing the header key value pair data * of the header. When a parameter does not contain a value, but just * contains a key, this function will inject a key with a '' string value. * * @param string|array $header Header to parse into components. * * @return array Returns the parsed header values. * * @deprecated parse_header will be removed in guzzlehttp/psr7:2.0. Use Header::parse instead. */ function parse_header($header) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Header::parse($header); } /** * Converts an array of header values that may contain comma separated * headers into an array of headers with no comma separated values. * * @param string|array $header Header to normalize. * * @return array Returns the normalized header field values. * * @deprecated normalize_header will be removed in guzzlehttp/psr7:2.0. Use Header::normalize instead. */ function normalize_header($header) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Header::normalize($header); } /** * Clone and modify a request with the given changes. * * This method is useful for reducing the number of clones needed to mutate a * message. * * The changes can be one of: * - method: (string) Changes the HTTP method. * - set_headers: (array) Sets the given headers. * - remove_headers: (array) Remove the given headers. * - body: (mixed) Sets the given body. * - uri: (UriInterface) Set the URI. * - query: (string) Set the query string value of the URI. * - version: (string) Set the protocol version. * * @param RequestInterface $request Request to clone and modify. * @param array $changes Changes to apply. * * @return RequestInterface * * @deprecated modify_request will be removed in guzzlehttp/psr7:2.0. Use Utils::modifyRequest instead. */ function modify_request(\Google\Site_Kit_Dependencies\Psr\Http\Message\RequestInterface $request, array $changes) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Utils::modifyRequest($request, $changes); } /** * Attempts to rewind a message body and throws an exception on failure. * * The body of the message will only be rewound if a call to `tell()` returns a * value other than `0`. * * @param MessageInterface $message Message to rewind * * @throws \RuntimeException * * @deprecated rewind_body will be removed in guzzlehttp/psr7:2.0. Use Message::rewindBody instead. */ function rewind_body(\Google\Site_Kit_Dependencies\Psr\Http\Message\MessageInterface $message) { \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Message::rewindBody($message); } /** * Safely opens a PHP stream resource using a filename. * * When fopen fails, PHP normally raises a warning. This function adds an * error handler that checks for errors and throws an exception instead. * * @param string $filename File to open * @param string $mode Mode used to open the file * * @return resource * * @throws \RuntimeException if the file cannot be opened * * @deprecated try_fopen will be removed in guzzlehttp/psr7:2.0. Use Utils::tryFopen instead. */ function try_fopen($filename, $mode) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Utils::tryFopen($filename, $mode); } /** * Copy the contents of a stream into a string until the given number of * bytes have been read. * * @param StreamInterface $stream Stream to read * @param int $maxLen Maximum number of bytes to read. Pass -1 * to read the entire stream. * * @return string * * @throws \RuntimeException on error. * * @deprecated copy_to_string will be removed in guzzlehttp/psr7:2.0. Use Utils::copyToString instead. */ function copy_to_string(\Google\Site_Kit_Dependencies\Psr\Http\Message\StreamInterface $stream, $maxLen = -1) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Utils::copyToString($stream, $maxLen); } /** * Copy the contents of a stream into another stream until the given number * of bytes have been read. * * @param StreamInterface $source Stream to read from * @param StreamInterface $dest Stream to write to * @param int $maxLen Maximum number of bytes to read. Pass -1 * to read the entire stream. * * @throws \RuntimeException on error. * * @deprecated copy_to_stream will be removed in guzzlehttp/psr7:2.0. Use Utils::copyToStream instead. */ function copy_to_stream(\Google\Site_Kit_Dependencies\Psr\Http\Message\StreamInterface $source, \Google\Site_Kit_Dependencies\Psr\Http\Message\StreamInterface $dest, $maxLen = -1) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Utils::copyToStream($source, $dest, $maxLen); } /** * Calculate a hash of a stream. * * This method reads the entire stream to calculate a rolling hash, based on * PHP's `hash_init` functions. * * @param StreamInterface $stream Stream to calculate the hash for * @param string $algo Hash algorithm (e.g. md5, crc32, etc) * @param bool $rawOutput Whether or not to use raw output * * @return string Returns the hash of the stream * * @throws \RuntimeException on error. * * @deprecated hash will be removed in guzzlehttp/psr7:2.0. Use Utils::hash instead. */ function hash(\Google\Site_Kit_Dependencies\Psr\Http\Message\StreamInterface $stream, $algo, $rawOutput = \false) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Utils::hash($stream, $algo, $rawOutput); } /** * Read a line from the stream up to the maximum allowed buffer length. * * @param StreamInterface $stream Stream to read from * @param int|null $maxLength Maximum buffer length * * @return string * * @deprecated readline will be removed in guzzlehttp/psr7:2.0. Use Utils::readLine instead. */ function readline(\Google\Site_Kit_Dependencies\Psr\Http\Message\StreamInterface $stream, $maxLength = null) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Utils::readLine($stream, $maxLength); } /** * Parses a request message string into a request object. * * @param string $message Request message string. * * @return Request * * @deprecated parse_request will be removed in guzzlehttp/psr7:2.0. Use Message::parseRequest instead. */ function parse_request($message) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Message::parseRequest($message); } /** * Parses a response message string into a response object. * * @param string $message Response message string. * * @return Response * * @deprecated parse_response will be removed in guzzlehttp/psr7:2.0. Use Message::parseResponse instead. */ function parse_response($message) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Message::parseResponse($message); } /** * Parse a query string into an associative array. * * If multiple values are found for the same key, the value of that key value * pair will become an array. This function does not parse nested PHP style * arrays into an associative array (e.g., `foo[a]=1&foo[b]=2` will be parsed * into `['foo[a]' => '1', 'foo[b]' => '2'])`. * * @param string $str Query string to parse * @param int|bool $urlEncoding How the query string is encoded * * @return array * * @deprecated parse_query will be removed in guzzlehttp/psr7:2.0. Use Query::parse instead. */ function parse_query($str, $urlEncoding = \true) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Query::parse($str, $urlEncoding); } /** * Build a query string from an array of key value pairs. * * This function can use the return value of `parse_query()` to build a query * string. This function does not modify the provided keys when an array is * encountered (like `http_build_query()` would). * * @param array $params Query string parameters. * @param int|false $encoding Set to false to not encode, PHP_QUERY_RFC3986 * to encode using RFC3986, or PHP_QUERY_RFC1738 * to encode using RFC1738. * * @return string * * @deprecated build_query will be removed in guzzlehttp/psr7:2.0. Use Query::build instead. */ function build_query(array $params, $encoding = \PHP_QUERY_RFC3986) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Query::build($params, $encoding); } /** * Determines the mimetype of a file by looking at its extension. * * @param string $filename * * @return string|null * * @deprecated mimetype_from_filename will be removed in guzzlehttp/psr7:2.0. Use MimeType::fromFilename instead. */ function mimetype_from_filename($filename) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\MimeType::fromFilename($filename); } /** * Maps a file extensions to a mimetype. * * @param $extension string The file extension. * * @return string|null * * @link http://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x/conf/mime.types * @deprecated mimetype_from_extension will be removed in guzzlehttp/psr7:2.0. Use MimeType::fromExtension instead. */ function mimetype_from_extension($extension) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\MimeType::fromExtension($extension); } /** * Parses an HTTP message into an associative array. * * The array contains the "start-line" key containing the start line of * the message, "headers" key containing an associative array of header * array values, and a "body" key containing the body of the message. * * @param string $message HTTP request or response to parse. * * @return array * * @internal * * @deprecated _parse_message will be removed in guzzlehttp/psr7:2.0. Use Message::parseMessage instead. */ function _parse_message($message) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Message::parseMessage($message); } /** * Constructs a URI for an HTTP request message. * * @param string $path Path from the start-line * @param array $headers Array of headers (each value an array). * * @return string * * @internal * * @deprecated _parse_request_uri will be removed in guzzlehttp/psr7:2.0. Use Message::parseRequestUri instead. */ function _parse_request_uri($path, array $headers) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Message::parseRequestUri($path, $headers); } /** * Get a short summary of the message body. * * Will return `null` if the response is not printable. * * @param MessageInterface $message The message to get the body summary * @param int $truncateAt The maximum allowed size of the summary * * @return string|null * * @deprecated get_message_body_summary will be removed in guzzlehttp/psr7:2.0. Use Message::bodySummary instead. */ function get_message_body_summary(\Google\Site_Kit_Dependencies\Psr\Http\Message\MessageInterface $message, $truncateAt = 120) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Message::bodySummary($message, $truncateAt); } /** * Remove the items given by the keys, case insensitively from the data. * * @param iterable $keys * * @return array * * @internal * * @deprecated _caseless_remove will be removed in guzzlehttp/psr7:2.0. Use Utils::caselessRemove instead. */ function _caseless_remove($keys, array $data) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Utils::caselessRemove($keys, $data); } Türk Telekom’dan 890 milyon TL net kâr « Mall&Motto

Türk Telekom’dan 890 milyon TL net kâr « Mall&Motto

16 Mart 2025 - 20:18

Türk Telekom’dan 890 milyon TL net kâr

Türk Telekom’dan 890 milyon TL net kâr
Son Güncelleme :

29 Temmuz 2017 - 18:32

665 views
reklam

 

 

Türk Telekom’un 2017 ikinci çeyrek sonuçlarına çift haneli büyüme ve rekor kâr artışı damga vurdu. Yılın ilk üç ayına yüzde 13,3’lük yıllık büyüme ve 4,3 milyar TL’lik gelir ile başlayan Türk Telekom, 2017 ikinci çeyrekte yüzde 14,2’lik rekor yıllık büyüme ile 4,5 milyar TL’den fazla gelir elde etti. Böylece 2008’deki halka arzdan bu yana en büyük gelir artışını kaydetti. Elde edilen bu sonuçla Türk Telekom’un gelirleri yılın ilk yarısında 8.8 milyar TL’yi aştı.

Net 350 bin yeni abone kazanımı ile birlikte toplam 39,6 milyon abone sayısına ulaşan Türk Telekom’un net kârı ise 2017’nin ikinci çeyreğinde geçen yılın aynı dönemine göre 3,5 katına çıktı. 2016 ikinci çeyreğinde 248 milyon TL net kar kaydeden Türk Telekom, 2017’nin aynı döneminde karını 890 milyon TL’ye yükseltti.

Tivibu, uygun fiyatlı kampanyaları, kullanıcı dostu kurulum seçenekleri ve de münhasır içeriği sayesinde 2017’nin ikinci çeyreğinde de hızlı abone kazanımına devam etti. 179 bin yeni abone ile 2017 ikinci çeyreğinde 2016’nın ikinci çeyreğinin altı katı kadar yeni TV abonesi eklendi. Böylece toplam TV abone sayısı 2,3 milyona yükselerek Türk Telekom’un ödemeli TV pazarındaki yükselen konumunu güçlendirdi.

Türk Telekom CEO’su Dr. Paul Doany, Türkiye ekonomisindeki olumlu gelişmelere paralel olarak Türk Telekom’un yılın ikinci çeyreğinde de beklentilerin üzerinde büyüdüğünü belirterek, “Yılın ilk altı ayında yaklaşık yüzde 14’lük bir büyümeyle 8,8 milyar TL gelir sağladık. Bu olağanüstü performans ve Türkiye ekonomisine olan inancımız doğrultusunda Türk Telekom olarak 2017 yılı için büyüme öngörülerimizi yukarı yönlü revize ettik. Yıllık büyüme öngörümüzü 2016’ya kıyasla yüzde 8-9 seviyesinden çift haneye çıkararak yüzde 10-11 seviyesine yükselttik” dedi.

Türk Telekom’un 40 milyona yaklaşan abonesi ve 34 bine yakın çalışanıyla ülkenin lider bilgi ve iletişim teknolojileri şirketi olduğunu vurgulayan Doany şunları kaydetti: “Geçen yıl tamamladığımız marka birleşmesinin sağladığı sinerji, daha da dinamikleşen operasyonel yapımız ve güçlü teknolojik iştiraklerimizle Türkiye’nin telekomünikasyon pazarına yön veriyoruz. Tüm hızla devam eden 5G ve yeni nesil teknolojilere yönelik çalışmalarımıza ek olarak kurumsal girişim sermayesi mantığı ile inovatif girişimlere de yatırım yapmaya odaklanıyoruz. Böylelikle hem ülkemize hem de şirketimize daha hızlı ve sürdürülebilir değer yaratmaya çalışıyoruz.” dedi.

Türkiye’nin lider bilgi ve iletişim teknolojileri şirketi Türk Telekom, 2017 yılı ikinci çeyrek finansal sonuçlarını açıkladı. 2017’nin ilk altı ayında çift haneli büyüyen Türk Telekom, 8,8 milyar TL gelir elde etti. 2017’nin ilk üç ayında yüzde 13,3 büyüme ile 4,3 milyar TL gelir elde eden Türk Telekom, yılın ikinci çeyreğinde yüzde 14,2’lik büyüme ile 4,5 milyar TL’nin üzerinde gelir sağladı. Böylece 2008’deki halka arzdan bu yana en büyük gelir artışını kaydetti. Bu güçlü finansal ve operasyonel performansın sonucunda Türk Telekom’un ikinci çeyrek net kârı da, geçen yılın aynı dönemine göre 3,5 katına çıktı. 2016 ikinci çeyreğinde 248 milyon TL net kâr kaydeden Türk Telekom, 2017’nin aynı döneminde kârını 890 milyon TL’ye yükseltti.

FAVÖK yıllık yüzde 30 rekor artışla 1,7 milyar TL’ye çıktı

Şirketin konsolide faiz, amortisman ve vergi öncesi kârı (FAVÖK) ise Nisan-Haziran 2017 döneminde, 2008 yılındaki halka arzdan bu yana yıllık yüzde 30 rekor artışla 1,7 milyar TL’ye yükseldi. FAVÖK marjı yıllık 4 puanın üzerinde büyüme göstererek yüzde 38’e çıktı. FAVÖK’teki bu güçlü iyileşmenin ardından 2017 ikinci çeyrekte faaliyet kârı da yıllık yüzde 50 artışla 939 milyon T’L’ye yükseldi. Böylece Türk Telekom Grubu, yılın ilk yarısında kaydedilen güçlü gelir büyümesi ve operasyonel kârlılık artışının ardından 2017 yılının tamamı için büyüme öngörülerini yukarı yönlü revize etti.

Doany: Büyüme öngörüsü çift haneye yükseldi

Türk Telekom CEO’su Dr. Paul Doany, Türkiye ekonomisindeki olumlu gelişmelere paralel olarak, geçen yılki marka birleşmesiyle daha da dinamikleşen Türk Telekom’un yılın ikinci çeyreğinde beklentilerin üzerinde büyüdüğünü belirterek, “Türk Telekom olarak iyi bir başlangıç yaptığımız 2017’deki güçlü büyümemizi sürdürüyoruz. İkinci çeyrekte de hedeflerimizin üstüne çıkarak olağanüstü operasyonel ve finansal sonuçlar elde ettik. 4,5 milyar TL’nin üzerinde gelir elde ettiğimiz ikinci çeyrekte net kârımızı geçen yılın aynı dönemine göre 3,5 katına çıkardık ve 890 milyon TL’ye yükselttik. Bu olağanüstü performans ve Türkiye ekonomisine olan inancımızın ışığında Türk Telekom olarak 2017 yılı için büyüme öngörülerimizi yukarı yönlü revize ettik.

Grubumuz bünyesindeki tüm markaları tek çatı altında topladığımız marka birleşmesinin yarattığı sinerji ve verimlilik artışını da hesaba katarak, yıllık büyüme öngörümüzü yüzde 8-9 seviyesinden yüzde 10-11 seviyesine artırıyoruz” dedi.

Doany: 3,3 milyar TL yatırım planı

Bu revizyon kapsamında Türk Telekom’un 2017 yılı için FAVÖK beklentisinin de 5,8-6,0 milyar TL’den 6,3-6,4 milyar TL’ye yükseltildiğini kaydeden Doany, şunları söyledi: “Kurumsal data ve bilgi teknolojilerindeki projelerde ikinci yarıda gerçekleşecek hızlanmaları da göz önüne alarak 2017 yılı yatırım planlarımızı 3 milyar TL’den, 3,3 milyar TL’ye çıkardık. LTE spektrum ödemesi hariç tutulduğunda Türk Telekom Grubu olarak 2017 ikinci çeyrekte 545 milyon TL yatırım harcaması gerçekleştirdik. Türkiye’nin dijital dönüşümünü gerçekleştirmek amacıyla bilgi ve iletişim teknolojileri ekosistemindeki inovasyon ve yatırım odaklılığımız da tüm gücüyle devam edecek. Tüm hızla devam eden 5G ve yeni nesil teknolojilere yönelik çalışmalarımızın yanı sıra kurumsal girişim sermayesi mantığı ile inovatif girişimlere de yatırım yapmaya odaklanacağız. Böylelikle hem ülkemize hem de şirketimize daha hızlı ve sürdürülebilir değer yaratmaya çalışacağız” dedi.

Doany: Telekomünikasyon pazarına yön vermeye devam ediyoruz

İkinci çeyrekte Türk Telekom toplam abone sayısının çeyrek bazda 350 binlik net artış ile 39,6 milyona ulaştığını kaydeden Doany, şu bilgileri paylaştı: “40 milyona yaklaşan toplam abone sayısı ve 34 bin çalışanımızla ülkenin lider bilgi ve iletişim teknolojileri şirketi olarak Türkiye’nin telekomünikasyon pazarına yön vermeye devam ediyoruz. Daha sadeleştirilmiş bir organizasyon yapısı sayesinde belirgin bir şekilde artan operasyonel verimlilik; geçtiğimiz yıl LTE ile ilgili giderler sonrasında iyileşen ticari harcamalarımız ve kur ortamının daha iyi olması ikinci çeyrekte net karımızdaki olağanüstü performansta etkili olan itici güçler. Abone bazımıza baktığımızda özellikle genişbantta güçlü büyüme kaydettik. 2017’nin ikinci çeyreği itibarıyla, sabit genişbant abonelerinin sayısı son dokuz yılın en iyi ikinci çeyrek net abone kazanımı olan 188 bin artışla 9,1 milyona ulaştı. Bu dönemde fiber ürünümüze olan güçlü talep de devam etti ve fiber abone sayımız 2.3 milyona çıktı. 2017 yılı TV segmenti için de oldukça başarılı bir dönem oldu. 179 bin yeni abone kazanımı sağladığımız 2017 ikinci çeyreğinde 2016’nın ikinci çeyreğinin 6 katı kadar yeni TV abonesi ekledik. Böylece toplam TV abone sayımızı 2.3 milyona yükselttik. Tüm bu operasyonel başarılara ek olarak Brand Finance tarafından 8. kez Türkiye’nin en değerli markası da seçildik. Bu gurur ve başarılar için tüm Türk Telekom çalışanlarına kalben teşekkürlerimi sunuyorum” dedi.

YORUM YAP

YASAL UYARI! Suç teşkil edecek, yasadışı, tehditkar, rahatsız edici, hakaret ve küfür içeren, aşağılayıcı, küçük düşürücü, kaba, pornografik, ahlaka aykırı, kişilik haklarına zarar verici ya da benzeri niteliklerde içeriklerden doğan her türlü mali, hukuki, cezai, idari sorumluluk içeriği gönderen kişiye aittir.